123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- #ifndef NRF_SDH_FREERTOS_H__
- #define NRF_SDH_FREERTOS_H__
- #ifdef __cplusplus
- extern "C" {
- #endif
- typedef void (*nrf_sdh_freertos_task_hook_t)(void * p_context);
- void nrf_sdh_freertos_init(nrf_sdh_freertos_task_hook_t hook, void * p_context);
- #ifdef __cplusplus
- }
- #endif
- #endif
|