18 lines
296 B
C
Raw Normal View History

2023-07-13 11:27:03 +08:00
#ifndef _GTIMER_DRV_H_
#define _GTIMER_DRV_H_
#include "ucp_utility.h"
int32_t gtimer2_init(uint8_t tmrId);
void gtimer2_start(uint8_t tmrId);
void gtimer2_stop(uint8_t tmrId);
int32_t gtimer2_int_enable(uint8_t tmrId);
int32_t gtimer2_int_disable(uint8_t tmrId);
#endif