Simplified XF 1.1.0
c-wrapper-functions.h
1#ifndef XF_C_WRAPPER_FUNCTIONS_H
2#define XF_C_WRAPPER_FUNCTIONS_H
3
4#include <stdint.h>
5#include <stdbool.h>
6
16#ifdef __cplusplus
17extern "C" {
18#endif
19
26void XF_tick();
27
34
38bool XF_isRunning();
39
40#ifdef __cplusplus
41}
42#endif // end of port_idf_stm32 group
44#endif // XF_C_WRAPPER_FUNCTIONS_H
void XF_tick()
Must be called regularly in a timer ISR or software timer callback.
Definition: c-wrapper-functions.cpp:17
int32_t XF_tickIntervalInMilliseconds()
Definition: c-wrapper-functions.cpp:30
bool XF_isRunning()
Definition: c-wrapper-functions.cpp:35