We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a197cf0 commit 2274100Copy full SHA for 2274100
cores/arduino/wiring.c
@@ -39,11 +39,8 @@ uint32_t F_CPU_CORRECTED = F_CPU;
39
// the whole number of milliseconds per timerb3 overflow
40
uint16_t millis_inc;
41
42
-// the fractional number of milliseconds per timer0 overflow. we shift right
43
-// by three to fit these numbers into a byte. (for the clock speeds we care
44
-// about - 8 and 16 MHz - this doesn't lose precision.)
+// the fractional number of milliseconds per timerb3 overflow
45
uint16_t fract_inc;
46
-//#define FRACT_MAX (1000 >> 3)
47
#define FRACT_MAX (1000)
48
49
// whole number of microseconds per timerb3 tick
0 commit comments