We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e7a0b8a + 642be1c commit c7ccdfeCopy full SHA for c7ccdfe
cores/arduino/UART.cpp
@@ -197,7 +197,7 @@ void UartClass::begin(unsigned long baud, uint16_t config)
197
198
int8_t sigrow_val = SIGROW.OSC16ERR5V;
199
baud_setting *= (1024 + sigrow_val);
200
- baud_setting /= 1024;
+ baud_setting /= (1024 - sigrow_val);
201
202
// assign the baud_setting, a.k.a. BAUD (USART Baud Rate Register)
203
(*_hwserial_module).BAUD = (int16_t) baud_setting;
0 commit comments