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

drivers/dose: don't default to UART0

The first UART is usually used for the shell, so don't default
DOSE on it.
This commit is contained in:
Benjamin Valentin 2020-09-03 20:13:33 +02:00
parent f4f1114ead
commit 08db12be3b

View File

@ -30,7 +30,7 @@ extern "C" {
* @{
*/
#ifndef DOSE_PARAM_UART
#define DOSE_PARAM_UART (UART_DEV(0))
#define DOSE_PARAM_UART (UART_DEV(1))
#endif
#ifndef DOSE_PARAM_BAUDRATE
#define DOSE_PARAM_BAUDRATE (115200)