[FL-1922] BLE buffer overflow (#789)
* rpc: increase RPC buffer size. Add get available buffer size API * bt: add flow control characteristic to serial service * ble: change updating flow control characteristic logic * rpc: add buffer is empty callback * bt: add notification about empty RPC buffer * ble: add more debug info * serial_service: add mutex guarding available buffer size * ble: remove debug logs in serial service
This commit is contained in:
		| @@ -92,7 +92,10 @@ void furi_hal_bt_set_key_storage_change_callback(BleGlueKeyStorageChangedCallbac | ||||
|  * @param on_sent_cb - SerialSvcDataSentCallback instance | ||||
|  * @param context - pointer to context | ||||
|  */ | ||||
| void furi_hal_bt_set_data_event_callbacks(SerialSvcDataReceivedCallback on_received_cb, SerialSvcDataSentCallback on_sent_cb, void* context); | ||||
| void furi_hal_bt_set_data_event_callbacks(uint16_t buff_size, SerialSvcDataReceivedCallback on_received_cb, SerialSvcDataSentCallback on_sent_cb, void* context); | ||||
|  | ||||
| /** Notify that buffer is empty */ | ||||
| void furi_hal_bt_notify_buffer_is_empty(); | ||||
|  | ||||
| /** Send data through BLE | ||||
|  * @param data - data buffer | ||||
|   | ||||
		Reference in New Issue
	
	Block a user