updated define name to reflect project not being focused towards BT anymore.
This commit is contained in:
parent
9352fe4cc9
commit
410d8b3c83
|
@ -64,8 +64,8 @@ int main() {
|
||||||
void init_usart0(void) {
|
void init_usart0(void) {
|
||||||
//setup stuff for usart communications.
|
//setup stuff for usart communications.
|
||||||
|
|
||||||
UBRR0H |= (uint8_t) (BT_UBRR>>8);
|
UBRR0H |= (uint8_t) (F_UBRR>>8);
|
||||||
UBRR0L |= (uint8_t) BT_UBRR;
|
UBRR0L |= (uint8_t) F_UBRR;
|
||||||
|
|
||||||
//Enable recv and Transmit pins, overrides other uses.
|
//Enable recv and Transmit pins, overrides other uses.
|
||||||
//IN the usart control and status register 0B
|
//IN the usart control and status register 0B
|
||||||
|
|
Loading…
Reference in New Issue