Prusa3d Marlin fork
timer02.h
1 //timer02.h
2 // use atmega timer2 as main system timer instead of timer0
3 // timer0 is used for fast pwm (OC0B output)
4 // original OVF handler is disabled
5 #ifndef TIMER02_H
6 #define TIMER02_H
7 
8 #include <inttypes.h>
9 
10 #if defined(__cplusplus)
11 extern "C" {
12 #endif //defined(__cplusplus)
13 
15 extern void timer0_init(void);
16 
18 extern void timer2_init(void);
19 
21 extern unsigned long millis2(void);
22 
24 extern unsigned long micros2(void);
25 
27 extern void delay2(unsigned long ms);
28 
29 #if defined(__cplusplus)
30 }
31 #endif //defined(__cplusplus)
32 
33 #endif //TIMER02_H