mirror of
https://github.com/arduino/Arduino.git
synced 2025-02-18 12:54:25 +01:00
Fix comment typo
This commit is contained in:
parent
0aa9590b92
commit
0bc4b4bad1
@ -117,7 +117,7 @@ void HardwareSerial::begin(unsigned long baud, byte config)
|
||||
baud_setting = (F_CPU / 8 / baud - 1) / 2;
|
||||
}
|
||||
|
||||
// assign the baud_setting, a.k.a. ubbr (USART Baud Rate Register)
|
||||
// assign the baud_setting, a.k.a. ubrr (USART Baud Rate Register)
|
||||
*_ubrrh = baud_setting >> 8;
|
||||
*_ubrrl = baud_setting;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user