ble_task.h 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. #ifndef __BLE_TASK_H
  2. #define __BLE_TASK_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. #ifdef __BLE_TASK_H_GLOBAL
  7. #define __BLE_TASK_H_EXTERN
  8. #else
  9. #define __BLE_TASK_H_EXTERN extern
  10. #endif
  11. /************************************************************************************************
  12. * Version *
  13. ************************************************************************************************/
  14. /************************************************************************************************
  15. * How to use *
  16. ************************************************************************************************/
  17. /************************************************************************************************
  18. * Enable config *
  19. ************************************************************************************************/
  20. /************************************************************************************************
  21. * Includes *
  22. ************************************************************************************************/
  23. /************************************************************************************************
  24. * Defines *
  25. ************************************************************************************************/
  26. #define BLE_TASK_INIT() ble_init()
  27. /************************************************************************************************
  28. * Typedefs *
  29. ************************************************************************************************/
  30. /************************************************************************************************
  31. * Interfaces *
  32. ************************************************************************************************/
  33. void ble_task(void);
  34. #ifdef __cplusplus
  35. };
  36. #endif
  37. #endif // __BLE_TASK_H