mirror of
https://github.com/ep00ch/lwip-contrib-mac.git
synced 2024-11-06 04:05:03 +00:00
14 lines
296 B
C
14 lines
296 B
C
#ifndef _TIMER_H_
|
|
#define _TIMER_H_
|
|
|
|
#define TIMER_EVT_ETHARPTMR 0
|
|
#define TIMER_EVT_TCPTMR 1
|
|
#define TIMER_EVT_IPREASSTMR 2
|
|
#define TIMER_NUM 3
|
|
|
|
void timer_init(void);
|
|
void timer_set_interval(unsigned char tmr, unsigned int interval);
|
|
unsigned char timer_testclr_evt(unsigned char tmr);
|
|
|
|
#endif
|