Skip to content

Commit

Permalink
fix serial port baudrate
Browse files Browse the repository at this point in the history
  • Loading branch information
fsaintma committed Jan 26, 2016
1 parent 4183abe commit f69b278
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bsp/boards/iot-lab_M3/uart.c
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ void uart_init() {
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10;
GPIO_Init(GPIOA, &GPIO_InitStructure);

USART_InitStructure.USART_BaudRate = 115200;
USART_InitStructure.USART_BaudRate = 500000;
USART_InitStructure.USART_WordLength = USART_WordLength_8b;
USART_InitStructure.USART_StopBits = USART_StopBits_1;
USART_InitStructure.USART_Parity = USART_Parity_No;
Expand Down

0 comments on commit f69b278

Please sign in to comment.