mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
46 lines
1.3 KiB
Plaintext
46 lines
1.3 KiB
Plaintext
/**
|
|
@defgroup boards_adafruit-clue Adafruit Clue
|
|
@ingroup boards
|
|
@brief Support for the Adafruit Clue
|
|
|
|
### General information
|
|
|
|
The [Adafruit Clue](https://www.adafruit.com/clue) board
|
|
is an opensource, micro development kit using the nRF52840 SoC.
|
|
This board provides 802.15.4 and BLE connectivity.
|
|
|
|
<img src="https://raw.githubusercontent.com/adafruit/Adafruit-CLUE-PCB/master/assets/4500.jpg"
|
|
alt="Adafruit Clue" style="height:800px;"/>
|
|
|
|
### Schematics
|
|
|
|
The board detailed description and schematic is available
|
|
[here](https://github.com/adafruit/Adafruit-CLUE-PCB).
|
|
|
|
### Flash the board
|
|
|
|
The board is flashed using the `adafruit-nrfutil` Python package:
|
|
```
|
|
$ pip install --user adafruit-nrfutil
|
|
```
|
|
|
|
Example with `hello-world` application:
|
|
```
|
|
make BOARD=adafruit-clue -C examples/hello-world flash
|
|
```
|
|
|
|
### Accessing STDIO via UART
|
|
|
|
The STDIO is directly accessible via the USB port. On a Linux host, it's
|
|
generally mapped to `/dev/ttyACM0`.
|
|
|
|
Use the `term` target to connect to the board serial port<br/>
|
|
```
|
|
make BOARD=adafruit-clue -C examples/hello-world term
|
|
```
|
|
|
|
The `TERM_DELAY` environment variable can be used to add a delay (in second)
|
|
before opening the serial terminal. The default value is 2s which should be
|
|
enough in most of the situations.
|
|
*/
|