Add DHCP server to the Webserver demo for automatic network configuration. Correct...
[pub/USBasp.git] / Projects / Webserver / Lib / uip / conf / clock-arch.c
index 8363d96..2007de4 100644 (file)
@@ -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);
 }