12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- #ifndef HAL_ST_H
- #define HAL_ST_H
- #include "hal_st_lld.h"
- #define stGetCounter() st_lld_get_counter()
- #define stIsAlarmActive() st_lld_is_alarm_active()
- #ifdef __cplusplus
- extern "C" {
- #endif
- void stInit(void);
- void stStartAlarm(systime_t abstime);
- void stStopAlarm(void);
- void stSetAlarm(systime_t abstime);
- systime_t stGetAlarm(void);
- #ifdef __cplusplus
- }
- #endif
- #endif
|