1
0
mirror of git://projects.qi-hardware.com/antorcha.git synced 2024-11-01 07:24:58 +02:00

fw/accel.c (adcsra): correct typo in comment

This commit is contained in:
Werner Almesberger 2012-07-31 10:02:34 -03:00
parent d87f5fa0f5
commit bff9ca5801

View File

@ -48,7 +48,7 @@ static inline void adcsra(bool start)
1 << ADEN | /* enable ADC */
(start ? 1 << ADSC : 0) |
1 << ADIE | /* enable ADC interrupts */
6; /* clkADC = clk/64 -> 126 kHz */
6; /* clkADC = clk/64 -> 125 kHz */
}