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:
parent
3bdd73a146
commit
e958798225
@ -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
|
||||
|
@ -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
|
||||
/** @} */
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user