diff options
| author | Making Sound Machines <roland@makingsoundmachines.com> | 2024-01-27 17:41:15 +0100 |
|---|---|---|
| committer | Making Sound Machines <roland@makingsoundmachines.com> | 2024-01-27 17:41:15 +0100 |
| commit | 4d69fc08ad09427ebfe052a477a177be2e936ed1 (patch) | |
| tree | 4a06ae7b8db54e2f9f6d1a3aa24c4dd52772376a | |
| parent | 57cc0414ea041b9fcf2be7b6cb405b0e3b18f923 (diff) | |
| download | plinky-4d69fc08ad09427ebfe052a477a177be2e936ed1.tar.gz | |
Set UART3 baud rate to 31250 (MIDI baud rate)
| -rwxr-xr-x | sw/Core/Src/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/Core/Src/main.c b/sw/Core/Src/main.c index 80b3b50..c019c3e 100755 --- a/sw/Core/Src/main.c +++ b/sw/Core/Src/main.c @@ -1200,7 +1200,7 @@ static void MX_USART3_UART_Init(void) /* USER CODE END USART3_Init 1 */ huart3.Instance = USART3; - huart3.Init.BaudRate = 115200; + huart3.Init.BaudRate = 31250; huart3.Init.WordLength = UART_WORDLENGTH_8B; huart3.Init.StopBits = UART_STOPBITS_1; huart3.Init.Parity = UART_PARITY_NONE; |
