ble_app.h 214 B

123456789101112131415
  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. #ifdef __cplusplus
  10. }
  11. #endif