Skip to content
Snippets Groups Projects
Commit 47cd95a7 authored by Kaspar Schleiser's avatar Kaspar Schleiser Committed by GitHub
Browse files

Merge pull request #5890 from haukepetersen/fix_boards_uartstdiodev

boards: removed some superfluous definitions
parents fc1e9741 fc243f18
No related branches found
No related tags found
No related merge requests found
...@@ -28,11 +28,6 @@ ...@@ -28,11 +28,6 @@
extern "C" { extern "C" {
#endif #endif
/**
* @brief Use the UART 0 for STDIO on this board
*/
#define UART_STDIO_DEV UART_DEV(0)
/** /**
* @brief As the CPU is too slow to handle 115200 baud, we set the default * @brief As the CPU is too slow to handle 115200 baud, we set the default
* baudrate to 9600 for this board * baudrate to 9600 for this board
......
...@@ -27,6 +27,7 @@ ...@@ -27,6 +27,7 @@
#ifdef __cplusplus #ifdef __cplusplus
extern "C" { extern "C" {
#endif #endif
/** /**
* @brief LED pin definitions and handlers * @brief LED pin definitions and handlers
* @{ * @{
...@@ -56,16 +57,6 @@ extern "C" { ...@@ -56,16 +57,6 @@ extern "C" {
#define LED2_TOGGLE (GPIOB->ODR ^= LED2_MASK) #define LED2_TOGGLE (GPIOB->ODR ^= LED2_MASK)
/** @} */ /** @} */
/**
* @brief Use the 1st UART for STDIO on this board
*/
#define UART_STDIO_DEV UART_DEV(0)
/**
* @brief User button
*/
#define BTN_B1_PIN GPIO_PIN(PORT_C, 13)
/** /**
* @brief Initialize board specific hardware, including clock, LEDs and std-IO * @brief Initialize board specific hardware, including clock, LEDs and std-IO
*/ */
......
...@@ -54,15 +54,6 @@ extern "C" { ...@@ -54,15 +54,6 @@ extern "C" {
#define XTIMER_BACKOFF (40) #define XTIMER_BACKOFF (40)
/** @} */ /** @} */
/**
* @brief Standard input/output device configuration
* @{
*/
#define UART_STDIO_DEV (UART_DEV(0))
#define UART_STDIO_BAUDRATE (115200U)
#define UART_STDIO_RX_BUFSIZE (64U)
/** @} */
/** /**
* @brief CPU core configuration * @brief CPU core configuration
* *
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment