diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2010-11-25 03:20:01 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2010-11-25 03:20:01 +0000 |
commit | b634ec50a0646a1575d89add8ac851f7d8a66332 (patch) | |
tree | e901ff12e5073514ee17445780a658e298570844 /Projects/Webserver | |
parent | fd77bf5c9459360b8d3ae1679dfab71169d4a982 (diff) | |
download | lufa-b634ec50a0646a1575d89add8ac851f7d8a66332.tar.gz lufa-b634ec50a0646a1575d89add8ac851f7d8a66332.tar.bz2 lufa-b634ec50a0646a1575d89add8ac851f7d8a66332.zip |
Changed the XPLAINBridge software UART to use the regular CTC mode instead of the alternative CTC mode via the Input Capture register, to reduce user confusion.
Diffstat (limited to 'Projects/Webserver')
-rw-r--r-- | Projects/Webserver/Lib/uip/clock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Projects/Webserver/Lib/uip/clock.c b/Projects/Webserver/Lib/uip/clock.c index 0906e6125..71eaf2b28 100644 --- a/Projects/Webserver/Lib/uip/clock.c +++ b/Projects/Webserver/Lib/uip/clock.c @@ -11,7 +11,7 @@ volatile clock_time_t clock_datetime = 0; //Overflow interrupt -ISR(TIMER1_COMPA_vect) +ISR(TIMER1_COMPA_vect, ISR_BLOCK) { clock_datetime += 1; } |