Files
ESPC3-wireless/components/system/include/drivers/chip/tick.h

19 lines
220 B
C
Raw Normal View History

2024-03-28 12:19:52 +08:00
#ifndef __TICK_H__
#define __TICK_H__
#ifdef __cplusplus
extern "C"
{
#endif
void drv_tick_enable(unsigned freq);
void drv_tick_disable(void);
unsigned drv_tick_get_counter(void);
#ifdef __cplusplus
}
#endif
#endif