aboutsummaryrefslogtreecommitdiffstats
path: root/src/glutt-o-logique/usart.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/glutt-o-logique/usart.c')
-rw-r--r--src/glutt-o-logique/usart.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glutt-o-logique/usart.c b/src/glutt-o-logique/usart.c
index 03315b8..806505b 100644
--- a/src/glutt-o-logique/usart.c
+++ b/src/glutt-o-logique/usart.c
@@ -63,7 +63,7 @@ void usart_init() {
// Setup USART2 for 9600,8,N,1
USART_InitTypeDef USART_InitStruct;
- USART_InitStruct.USART_BaudRate = 115200;
+ USART_InitStruct.USART_BaudRate = 9600;
USART_InitStruct.USART_WordLength = USART_WordLength_8b;
USART_InitStruct.USART_StopBits = USART_StopBits_1;
USART_InitStruct.USART_Parity = USART_Parity_No;