2021-09-10 02:19:02 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
2021-11-04 17:26:41 +00:00
|
|
|
#include <stdint.h>
|
2021-09-10 02:19:02 +00:00
|
|
|
|
2021-09-15 16:58:32 +00:00
|
|
|
bool ble_app_init();
|
2021-11-04 17:26:41 +00:00
|
|
|
void ble_app_get_key_storage_buff(uint8_t** addr, uint16_t* size);
|
2021-09-10 02:19:02 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|