Skip to content
Snippets Groups Projects
Commit 7704d291 authored by Dean Camera's avatar Dean Camera
Browse files

Fix typos in the XPLAINBridge project preventing compilation.

parent 9f7883fa
No related branches found
No related tags found
No related merge requests found
......@@ -67,10 +67,10 @@ void SoftUART_Init(void)
SoftUART_SetBaud(9600);
/* Setup reception timer compare ISR */
TIMSK1 = (1 << OC1E1A);
TIMSK1 = (1 << OCIE1A);
/* Setup transmission timer compare ISR and start the timer */
TIMSK3 = (1 << OC1E3A);
TIMSK3 = (1 << OCIE3A);
TCCR3B = ((1 << CS30) | (1 << WGM32));
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment