2021-12-08 14:28:01 +03:00
|
|
|
#include "bt_i.h"
|
|
|
|
|
|
|
|
bool bt_set_profile(Bt* bt, BtProfile profile) {
|
|
|
|
furi_assert(bt);
|
|
|
|
|
|
|
|
// Send message
|
|
|
|
bool result = false;
|
|
|
|
BtMessage message = {
|
|
|
|
.type = BtMessageTypeSetProfile, .data.profile = profile, .result = &result};
|
2022-07-20 13:56:33 +03:00
|
|
|
furi_check(
|
|
|
|
furi_message_queue_put(bt->message_queue, &message, FuriWaitForever) == FuriStatusOk);
|
2021-12-08 14:28:01 +03:00
|
|
|
// Wait for unlock
|
2022-07-20 13:56:33 +03:00
|
|
|
furi_event_flag_wait(bt->api_event, BT_API_UNLOCK_EVENT, FuriFlagWaitAny, FuriWaitForever);
|
2021-12-08 14:28:01 +03:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
2021-12-15 20:39:06 +03:00
|
|
|
|
2022-06-09 12:07:42 +03:00
|
|
|
void bt_disconnect(Bt* bt) {
|
|
|
|
furi_assert(bt);
|
|
|
|
|
|
|
|
// Send message
|
|
|
|
BtMessage message = {.type = BtMessageTypeDisconnect};
|
2022-07-20 13:56:33 +03:00
|
|
|
furi_check(
|
|
|
|
furi_message_queue_put(bt->message_queue, &message, FuriWaitForever) == FuriStatusOk);
|
2022-06-09 12:07:42 +03:00
|
|
|
// Wait for unlock
|
2022-07-20 13:56:33 +03:00
|
|
|
furi_event_flag_wait(bt->api_event, BT_API_UNLOCK_EVENT, FuriFlagWaitAny, FuriWaitForever);
|
2022-06-09 12:07:42 +03:00
|
|
|
}
|
|
|
|
|
2021-12-15 20:39:06 +03:00
|
|
|
void bt_set_status_changed_callback(Bt* bt, BtStatusChangedCallback callback, void* context) {
|
|
|
|
furi_assert(bt);
|
|
|
|
|
|
|
|
bt->status_changed_cb = callback;
|
|
|
|
bt->status_changed_ctx = context;
|
|
|
|
}
|
2022-01-21 20:32:03 +03:00
|
|
|
|
|
|
|
void bt_forget_bonded_devices(Bt* bt) {
|
|
|
|
furi_assert(bt);
|
|
|
|
BtMessage message = {.type = BtMessageTypeForgetBondedDevices};
|
2022-07-20 13:56:33 +03:00
|
|
|
furi_check(
|
|
|
|
furi_message_queue_put(bt->message_queue, &message, FuriWaitForever) == FuriStatusOk);
|
2022-01-21 20:32:03 +03:00
|
|
|
}
|
2022-12-20 15:32:24 +03:00
|
|
|
|
|
|
|
void bt_keys_storage_set_storage_path(Bt* bt, const char* keys_storage_path) {
|
|
|
|
furi_assert(bt);
|
|
|
|
furi_assert(bt->keys_storage);
|
|
|
|
furi_assert(keys_storage_path);
|
|
|
|
|
2023-03-01 20:57:27 +03:00
|
|
|
Storage* storage = furi_record_open(RECORD_STORAGE);
|
|
|
|
FuriString* path = furi_string_alloc_set(keys_storage_path);
|
|
|
|
storage_common_resolve_path_and_ensure_app_directory(storage, path);
|
|
|
|
|
|
|
|
bt_keys_storage_set_file_path(bt->keys_storage, furi_string_get_cstr(path));
|
|
|
|
|
|
|
|
furi_string_free(path);
|
|
|
|
furi_record_close(RECORD_STORAGE);
|
2022-12-20 15:32:24 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void bt_keys_storage_set_default_path(Bt* bt) {
|
|
|
|
furi_assert(bt);
|
|
|
|
furi_assert(bt->keys_storage);
|
|
|
|
|
|
|
|
bt_keys_storage_set_file_path(bt->keys_storage, BT_KEYS_STORAGE_PATH);
|
|
|
|
}
|