ble_app.h 241 B

12345678910111213141516
  1. #pragma once
  2. #ifdef __cplusplus
  3. extern "C" {
  4. #endif
  5. #include <stdbool.h>
  6. #include <stdint.h>
  7. bool ble_app_init();
  8. void ble_app_get_key_storage_buff(uint8_t** addr, uint16_t* size);
  9. void ble_app_thread_stop();
  10. #ifdef __cplusplus
  11. }
  12. #endif