Create library for software timers and enable it

This commit is contained in:
2020-11-08 13:02:08 +01:00
parent 7a586e8643
commit 0378d53456
3 changed files with 35 additions and 1 deletions

10
ptimer.h Normal file
View File

@@ -0,0 +1,10 @@
#ifndef __PTIMER_H__
#define __PTIMER_H__
#define TIMERS_COUNT 0
extern volatile uint16_t timers[TIMERS_COUNT];
void ptimer_init(void);
#endif