2017-09-22 19:09:34 +02:00
|
|
|
/**
|
2018-07-26 11:48:55 +02:00
|
|
|
@defgroup boards_sodaq-explorer SODAQ ExpLoRer
|
|
|
|
@ingroup boards
|
|
|
|
@brief Support for the SODAQ ExpLoRer board
|
|
|
|
|
|
|
|
### General information
|
|
|
|
|
|
|
|
General information about this board can be found on the
|
|
|
|
[SODAQ support](http://support.sodaq.com/sodaq-one/explorer/) website.
|
|
|
|
|
|
|
|
### Flash the board
|
|
|
|
|
2019-10-01 12:09:14 +02:00
|
|
|
Use `BOARD=sodaq-explorer` with the `make` command.<br/>
|
|
|
|
Example with `hello-world` application:
|
2018-07-26 11:48:55 +02:00
|
|
|
```
|
|
|
|
make BOARD=sodaq-explorer -C examples/hello-world flash
|
|
|
|
```
|
|
|
|
|
2019-10-01 12:09:14 +02:00
|
|
|
@note If the application crashes, automatic reflashing via USB, as explained
|
|
|
|
above won't be possible. In this case, the board must be set in
|
|
|
|
bootloader mode by double tapping the reset button before running the
|
|
|
|
flash command.
|
|
|
|
|
2018-07-26 11:48:55 +02:00
|
|
|
### Accessing STDIO via UART
|
|
|
|
|
2019-10-01 12:09:14 +02:00
|
|
|
STDIO of RIOT is directly available over the USB port.
|
2018-07-26 11:48:55 +02:00
|
|
|
|
2019-10-01 12:09:14 +02:00
|
|
|
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 situation.
|
2018-07-26 11:48:55 +02:00
|
|
|
*/
|