1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/boards/e104-bt5011a-tb/doc.txt
Benjamin Valentin e03034eb87 boards/e104-bt5011a-tb: add support for E104-BT5011A breakout board
This adds support for the nRF52811 based E104-BT5011A break-out board.
2020-12-01 16:14:43 +01:00

32 lines
989 B
Plaintext

/**
@defgroup boards_e104-bt5011a-tb E104-BT5011A Test Board
@ingroup boards
@brief Support for the Ebyte E104-BT5011A Test Board (nRF52811)
## General information
The E104-BT5011A Test Board is a cheap break-out board for the E104-BT5011A module.
It's based on the nRF52811 and by default comes with a Firmware that accepts AT
commands over UART, but it can be flashed with RIOT easily.
- [Module Datasheet](http://www.ebyte.com/en/downpdf.aspx?id=1074)
- [Module Website](http://www.ebyte.com/en/product-view-news.aspx?id=1074)
## Flashing the board
To flash the board, you have to connect a SWD programmer to the pins labeled SWDIO and
SWCLK. Also make sure to connect GND.
P0.21 is Reset.
## Accessing STDIO via UART
The STDIO is directly accessible via the USB port. On a Linux host, it's
generally mapped to `/dev/ttyUSB0`.
Use the `term` target to connect to the board serial port<br/>
```
make BOARD=e104-bt5011a-tb -C examples/hello-world term
```
*/