aboutsummaryrefslogtreecommitdiffstats
path: root/Projects/Webserver/Lib
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2010-11-25 03:20:01 +0000
committerDean Camera <dean@fourwalledcubicle.com>2010-11-25 03:20:01 +0000
commitb634ec50a0646a1575d89add8ac851f7d8a66332 (patch)
treee901ff12e5073514ee17445780a658e298570844 /Projects/Webserver/Lib
parentfd77bf5c9459360b8d3ae1679dfab71169d4a982 (diff)
downloadlufa-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/Lib')
-rw-r--r--Projects/Webserver/Lib/uip/clock.c2
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;
}