From 08db12be3b6d7daad7b03b36ceb165166d005c99 Mon Sep 17 00:00:00 2001 From: Benjamin Valentin Date: Thu, 3 Sep 2020 20:13:33 +0200 Subject: [PATCH] drivers/dose: don't default to UART0 The first UART is usually used for the shell, so don't default DOSE on it. --- drivers/dose/include/dose_params.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/dose/include/dose_params.h b/drivers/dose/include/dose_params.h index 8959d3770c..e91c01b5b6 100644 --- a/drivers/dose/include/dose_params.h +++ b/drivers/dose/include/dose_params.h @@ -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)