1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-17 05:32:45 +01:00

boards/atmega256rfr2-xpro: use 115200 baudrate for STDIO

This commit is contained in:
Alexandre Abadie 2019-11-06 08:11:52 +01:00
parent 485bfc45da
commit 42c4b7d34d
No known key found for this signature in database
GPG Key ID: 1C919A403CAE1405
2 changed files with 1 additions and 11 deletions

View File

@ -1,7 +1,7 @@
# configure the terminal program
PORT_LINUX ?= /dev/ttyACM0
PORT_DARWIN ?= $(firstword $(sort $(wildcard /dev/tty.usbmodem*)))
BAUD ?= 9600
BAUD ?= 115200
include $(RIOTMAKE)/tools/serial.inc.mk
# Use EDBG (xplainedpro) programmer with avrdude

View File

@ -26,16 +26,6 @@
extern "C" {
#endif
/**
* @name STDIO configuration
*
* As the CPU is too slow to handle 115200 baud, we set the default
* baudrate to 9600 for this board
* @{
*/
#define STDIO_UART_BAUDRATE (9600U)
/** @} */
/**
* @brief Use the UART 1 for STDIO on this board
*/