1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-27 15:31:17 +01:00

board: arduino-mega2560: set default baudrate to 9600

This commit is contained in:
Kaspar Schleiser 2015-09-03 16:30:51 +02:00
parent bec167c8d0
commit fa0202ec99
2 changed files with 4 additions and 4 deletions

View File

@ -12,7 +12,7 @@ export LINK = $(PREFIX)gcc
export SIZE = $(PREFIX)size
export OBJCOPY = $(PREFIX)objcopy
export TERMPROG = $(RIOTBASE)/dist/tools/pyterm/pyterm
export TERMFLAGS = -b 38400 -p $(PORT)
export TERMFLAGS = -b 9600 -p $(PORT)
#define the flash-tool and default port depending on the host operating system
OS = $(shell uname)

View File

@ -42,9 +42,9 @@ extern "C" {
* @name Define UART device and baudrate for stdio
* @{
*/
#define STDIO UART_0
#define STDIO_BAUDRATE (38400U)
#define STDIO_RX_BUFSIZE (64U)
#define STDIO UART_0
#define STDIO_BAUDRATE (9600U)
#define STDIO_RX_BUFSIZE (64U)
/** @} */
/**