Fix comment typo

This commit is contained in:
Matthijs Kooijman 2014-05-06 10:19:08 +02:00
parent 0aa9590b92
commit 0bc4b4bad1
1 changed files with 1 additions and 1 deletions

View File

@ -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;