From: Dean Camera Date: Fri, 26 Nov 2010 04:27:52 +0000 (+0000) Subject: Fix typos in the XPLAINBridge project preventing compilation. X-Git-Tag: LUFA-110528-BETA~145 X-Git-Url: http://git.linex4red.de/pub/USBasp.git/commitdiff_plain/7704d2915c88eed03111b9f202850c57115bb697?ds=sidebyside Fix typos in the XPLAINBridge project preventing compilation. --- 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)); }