12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- #ifndef __BLE_TASK_H
- #define __BLE_TASK_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- #ifdef __BLE_TASK_H_GLOBAL
- #define __BLE_TASK_H_EXTERN
- #else
- #define __BLE_TASK_H_EXTERN extern
- #endif
- /************************************************************************************************
- * Version *
- ************************************************************************************************/
- /************************************************************************************************
- * How to use *
- ************************************************************************************************/
- /************************************************************************************************
- * Enable config *
- ************************************************************************************************/
- /************************************************************************************************
- * Includes *
- ************************************************************************************************/
- /************************************************************************************************
- * Defines *
- ************************************************************************************************/
- #define BLE_TASK_INIT() ble_init()
- /************************************************************************************************
- * Typedefs *
- ************************************************************************************************/
- /************************************************************************************************
- * Interfaces *
- ************************************************************************************************/
- void ble_task(void);
- #ifdef __cplusplus
- };
- #endif
- #endif // __BLE_TASK_H
|