This repository has been archived on 2023-01-14. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
05_wickler/millis.h

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