19 lines
268 B
C
19 lines
268 B
C
#ifndef __DVM_TMR_H__
|
|
#define __DVM_TMR_H__
|
|
|
|
|
|
|
|
typedef void (*tmr_cb)(void);
|
|
|
|
void dvm_tmr_init(void);
|
|
|
|
void dvm_tmr0_start( void);
|
|
void dvm_tmr0_stop( void);
|
|
|
|
|
|
void dvm_tmr1_start( void);
|
|
void dvm_tmr1_stop( void);
|
|
unsigned long dvm_tmr1_count( void);
|
|
|
|
#endif
|