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

boards/microduino-corerf: use 115200 baud for stdio

The MCU can handle that baud rate just fine.
A standard baud rate is much easier to use than those awkward 57600 baud.
This commit is contained in:
Benjamin Valentin 2019-12-04 22:43:41 +01:00
parent 3bdd73a146
commit e958798225
2 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
# configure the terminal program
PORT_LINUX ?= /dev/ttyACM0
PORT_LINUX ?= /dev/ttyUSB0
PORT_DARWIN ?= $(firstword $(sort $(wildcard /dev/tty.usbmodem*)))
BAUD ?= 57600
BAUD ?= 115200
include $(RIOTMAKE)/tools/serial.inc.mk
# PROGRAMMER defaults to UM232H which is a FT232H breakout board

View File

@ -31,7 +31,7 @@ extern "C" {
* @{
*/
#ifndef STDIO_UART_BAUDRATE
#define STDIO_UART_BAUDRATE (57600U) /**< Sets Baudrate for e.g. Shell */
#define STDIO_UART_BAUDRATE (115200U) /**< Sets Baudrate for e.g. Shell */
#endif
/** @} */