app_entry.h 289 B

1234567891011121314151617181920
  1. #pragma once
  2. #ifdef __cplusplus
  3. extern "C" {
  4. #endif
  5. typedef enum {
  6. BleGlueStatusUninitialized,
  7. BleGlueStatusStartup,
  8. BleGlueStatusBroken,
  9. BleGlueStatusStarted
  10. } BleGlueStatus;
  11. void APPE_Init();
  12. BleGlueStatus APPE_Status();
  13. #ifdef __cplusplus
  14. } /* extern "C" */
  15. #endif