12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
-
- #ifndef MBED_LPTICKER_API_H
- #define MBED_LPTICKER_API_H
-
- #include "device.h"
-
- #if DEVICE_LOWPOWERTIMER
-
- #include "ticker_api.h"
-
- #ifdef __cplusplus
- extern "C" {
- #endif
-
-
-
-
- const ticker_data_t* get_lp_ticker_data(void);
-
-
- void lp_ticker_irq_handler(void);
-
-
-
-
- void lp_ticker_init(void);
-
-
- uint32_t lp_ticker_read(void);
-
-
- void lp_ticker_set_interrupt(timestamp_t timestamp);
-
-
- void lp_ticker_disable_interrupt(void);
-
-
- void lp_ticker_clear_interrupt(void);
-
-
-
- #ifdef __cplusplus
- }
- #endif
-
- #endif
-
- #endif
|