9 lines
127 B
C
9 lines
127 B
C
#ifndef _MILLIS_H_
|
|
#define _MILLIS_H_
|
|
|
|
#define TICK_PER_SEC 1000UL
|
|
unsigned long millis(void);
|
|
void timer0_init(void);
|
|
|
|
#endif
|