diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2010-11-26 04:27:52 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2010-11-26 04:27:52 +0000 |
commit | 7704d2915c88eed03111b9f202850c57115bb697 (patch) | |
tree | e2b9b54637aee7924a3d67bb699a7ea549e96b5e /Projects | |
parent | 9f7883fa2b78fd7907162987fc65b71d3c6b19fa (diff) | |
download | lufa-7704d2915c88eed03111b9f202850c57115bb697.tar.gz lufa-7704d2915c88eed03111b9f202850c57115bb697.tar.bz2 lufa-7704d2915c88eed03111b9f202850c57115bb697.zip |
Fix typos in the XPLAINBridge project preventing compilation.
Diffstat (limited to 'Projects')
-rw-r--r-- | Projects/XPLAINBridge/Lib/SoftUART.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Projects/XPLAINBridge/Lib/SoftUART.c b/Projects/XPLAINBridge/Lib/SoftUART.c index 9df42c596..7667bfa31 100644 --- a/Projects/XPLAINBridge/Lib/SoftUART.c +++ b/Projects/XPLAINBridge/Lib/SoftUART.c @@ -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)); } |