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

Merge pull request #5215 from haukepetersen/fix_telosb_baudrate

boards/telosb: changed default baudrate to 9600
This commit is contained in:
Cenk Gündoğan 2016-04-01 12:26:16 +02:00
commit 9f764cfc8c
2 changed files with 10 additions and 0 deletions

View File

@ -6,6 +6,7 @@ export CPU_MODEL = msp430f1611
PORT_LINUX ?= /dev/ttyUSB0
PORT_DARWIN ?= $(firstword $(sort $(wildcard /dev/tty.usbserial-MXV*)))
# setup serial terminal
export BAUD ?= 9600
include $(RIOTBOARD)/Makefile.include.serial
# flash tool configuration

View File

@ -41,6 +41,15 @@ extern "C" {
#define __MSP430F1611__
#endif
/**
* @brief Override default baudrate for STDIO
* @{
*/
#ifndef UART_STDIO_BAUDRATE
#define UART_STDIO_BAUDRATE (9600)
#endif
/** @} */
/**
* @brief Xtimer configuration
* @{