[FL-1721] Bluetooth refactoring (#747)

* ble-glue: add on connect \ disconnect, on send \ received callbacks
* bt: rework service with furi-hal-bt and callbacks
* bt: update battery level on connect
* ble-glue: set one callback with parameters
* bt: rework callbacks, remove unused API
* ble-glue: remove dead code
* furi-hal-bt: add documentation
* ble-glue: apply changes for f7 target
* bt: rename RpcInstance -> Rpc
* ble: add disconnection reason
* ble: don't open bt record from GAP
* bt: fix RPC session close
* Assets: separate targets for icons and protobuf

Co-authored-by: あく <alleteam@gmail.com>
This commit is contained in:
gornekich
2021-10-12 19:41:42 +03:00
committed by GitHub
parent 8c5813ef9b
commit 943fb1bced
16 changed files with 335 additions and 229 deletions

View File

@@ -4,7 +4,8 @@
#include <stm32wbxx.h>
#include <shci.h>
#include <cmsis_os2.h>
#include <gap.h>
#include <furi.h>
void furi_hal_bt_init() {
// Explicitly tell that we are in charge of CLK48 domain
@@ -13,8 +14,9 @@ void furi_hal_bt_init() {
APPE_Init();
}
bool furi_hal_bt_init_app() {
return gap_init();
bool furi_hal_bt_init_app(BleEventCallback event_cb, void* context) {
furi_assert(event_cb);
return gap_init(event_cb, context);
}
void furi_hal_bt_start_advertising() {
@@ -32,6 +34,17 @@ void furi_hal_bt_stop_advertising() {
}
}
void furi_hal_bt_set_data_event_callbacks(SerialSvcDataReceivedCallback on_received_cb, SerialSvcDataSentCallback on_sent_cb, void* context) {
serial_svc_set_callbacks(on_received_cb, on_sent_cb, context);
}
bool furi_hal_bt_tx(uint8_t* data, uint16_t size) {
if(size > FURI_HAL_BT_PACKET_SIZE_MAX) {
return false;
}
return serial_svc_update_tx(data, size);
}
void furi_hal_bt_dump_state(string_t buffer) {
BleGlueStatus status = APPE_Status();
if (status == BleGlueStatusStarted) {