1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

boards/feather-nrf52840: update terminal doc for current status quo

This commit is contained in:
Martine Lenders 2021-08-24 17:51:25 +02:00
parent 1f17769038
commit a1ab612873
No known key found for this signature in database
GPG Key ID: 2134D77A5336DD80

View File

@ -48,14 +48,13 @@ git -C lib/tinyusb submodule update --init hw/mcu/nordic/nrfx/
pip3 install --user adafruit-nrfutil
make BOARD=feather_nrf52840_express all
make BOARD=feather_nrf52840_express flash
~~~~~~~~~~~~
~~~~~~~~~~~~~
[nrfjprog]: https://www.nordicsemi.com/Products/Development-tools/nRF-Command-Line-Tools
### Terminal
To connect a terminal to the Feather, RIOT chooses Segger RTT per default.
This lets you use the Segger J-Link Programmer as a serial interface to the
device.
To connect a terminal to the Feather, RIOT chooses `stdio_cdc_acm` per default.
This lets you access the Feather directly over USB.
You have several alternative possibilities to connect to the board.
@ -67,7 +66,7 @@ You have several alternative possibilities to connect to the board.
UART-based terminals to connect to the feather
2. With
~~~~~~~~~~~~~~~~~~~~~ {.mk}
USEMODULE += stdio_cdc_acm
USEMODULE += stdio_rtt
~~~~~~~~~~~~~~~~~~~~~
you can access the Feather with a terminal directly over USB.
you can use the Segger J-Link Programmer as a serial interface to the device.
*/