Initial check in

This commit is contained in:
2026-01-08 13:34:45 +01:00
commit bca620b050
44 changed files with 4832 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
#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