Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ble_app.h « ble-glue « f7 « targets « firmware - github.com/ClusterM/flipperzero-firmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 062154e9c1922c11302f874c180bc3f8acd8a70c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once 

#ifdef __cplusplus
extern "C" {
#endif

#include <stdbool.h>
#include <stdint.h>

bool ble_app_init();
void ble_app_get_key_storage_buff(uint8_t** addr, uint16_t* size);
void ble_app_thread_stop();

#ifdef __cplusplus
}
#endif