projects
/
pub
/
USBasp.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Add DHCP server to the Webserver demo for automatic network configuration. Correct...
[pub/USBasp.git]
/
Projects
/
Webserver
/
Lib
/
uip
/
conf
/
clock-arch.c
diff --git
a/Projects/Webserver/Lib/uip/conf/clock-arch.c
b/Projects/Webserver/Lib/uip/conf/clock-arch.c
index
8363d96
..
2007de4
100644
(file)
--- a/
Projects/Webserver/Lib/uip/conf/clock-arch.c
+++ b/
Projects/Webserver/Lib/uip/conf/clock-arch.c
@@
-21,8
+21,7
@@
ISR(TIMER1_COMPA_vect)
void clock_init()
\r
{
\r
OCR1A = ((F_CPU / 1024) / 100);
- TCCR1A = (1 << WGM12);
- TCCR1B = ((1 << CS12) | (1 << CS10));
+ TCCR1B = ((1 << WGM12) | (1 << CS12) | (1 << CS10));
TIMSK1 = (1 << OCIE1A);
}