Flipper Zero Firmware
Loading...
Searching...
No Matches
ble_app.h
1#pragma once
2
3#include <stdbool.h>
4#include <stdint.h>
5
6/*
7 * BLE stack init and cleanup
8 */
9
10#ifdef __cplusplus
11extern "C" {
12#endif
13
14bool ble_app_init(void);
15
16void ble_app_get_key_storage_buff(uint8_t** addr, uint16_t* size);
17
18void ble_app_deinit(void);
19
20#ifdef __cplusplus
21}
22#endif