2021-12-08 14:28:01 +03:00
|
|
|
#include "bt_i.h"
|
2024-02-16 11:20:45 +04:00
|
|
|
#include <profiles/serial_profile.h>
|
2021-12-08 14:28:01 +03:00
|
|
|
|
2024-02-16 11:20:45 +04:00
|
|
|
FuriHalBleProfileBase* bt_profile_start(
|
|
|
|
|
Bt* bt,
|
|
|
|
|
const FuriHalBleProfileTemplate* profile_template,
|
|
|
|
|
FuriHalBleProfileParams params) {
|
2024-03-25 13:53:32 +03:00
|
|
|
furi_check(bt);
|
2021-12-08 14:28:01 +03:00
|
|
|
|
|
|
|
|
// Send message
|
2024-02-16 11:20:45 +04:00
|
|
|
FuriHalBleProfileBase* profile_instance = NULL;
|
|
|
|
|
|
2021-12-08 14:28:01 +03:00
|
|
|
BtMessage message = {
|
2023-09-25 14:12:12 +09:00
|
|
|
.lock = api_lock_alloc_locked(),
|
|
|
|
|
.type = BtMessageTypeSetProfile,
|
2024-02-16 11:20:45 +04:00
|
|
|
.profile_instance = &profile_instance,
|
|
|
|
|
.data.profile.params = params,
|
|
|
|
|
.data.profile.template = profile_template,
|
|
|
|
|
};
|
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
|
2023-09-25 14:12:12 +09:00
|
|
|
api_lock_wait_unlock_and_free(message.lock);
|
2021-12-08 14:28:01 +03:00
|
|
|
|
2024-02-16 11:20:45 +04:00
|
|
|
bt->current_profile = profile_instance;
|
|
|
|
|
return profile_instance;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool bt_profile_restore_default(Bt* bt) {
|
|
|
|
|
bt->current_profile = bt_profile_start(bt, ble_profile_serial, NULL);
|
|
|
|
|
return bt->current_profile != NULL;
|
2021-12-08 14:28:01 +03:00
|
|
|
}
|
2021-12-15 20:39:06 +03:00
|
|
|
|
2022-06-09 18:07:42 +09:00
|
|
|
void bt_disconnect(Bt* bt) {
|
2024-03-25 13:53:32 +03:00
|
|
|
furi_check(bt);
|
2022-06-09 18:07:42 +09:00
|
|
|
|
|
|
|
|
// Send message
|
2023-09-25 14:12:12 +09:00
|
|
|
BtMessage message = {.lock = api_lock_alloc_locked(), .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 18:07:42 +09:00
|
|
|
// Wait for unlock
|
2023-09-25 14:12:12 +09:00
|
|
|
api_lock_wait_unlock_and_free(message.lock);
|
2022-06-09 18:07:42 +09:00
|
|
|
}
|
|
|
|
|
|
2021-12-15 20:39:06 +03:00
|
|
|
void bt_set_status_changed_callback(Bt* bt, BtStatusChangedCallback callback, void* context) {
|
2024-03-25 13:53:32 +03:00
|
|
|
furi_check(bt);
|
2021-12-15 20:39:06 +03:00
|
|
|
|
|
|
|
|
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) {
|
2024-03-25 13:53:32 +03:00
|
|
|
furi_check(bt);
|
2022-01-21 20:32:03 +03:00
|
|
|
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 16:32:24 +04:00
|
|
|
|
|
|
|
|
void bt_keys_storage_set_storage_path(Bt* bt, const char* keys_storage_path) {
|
2024-03-25 13:53:32 +03:00
|
|
|
furi_check(bt);
|
|
|
|
|
furi_check(bt->keys_storage);
|
|
|
|
|
furi_check(keys_storage_path);
|
2022-12-20 16:32:24 +04:00
|
|
|
|
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 16:32:24 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void bt_keys_storage_set_default_path(Bt* bt) {
|
2024-03-25 13:53:32 +03:00
|
|
|
furi_check(bt);
|
|
|
|
|
furi_check(bt->keys_storage);
|
2022-12-20 16:32:24 +04:00
|
|
|
|
|
|
|
|
bt_keys_storage_set_file_path(bt->keys_storage, BT_KEYS_STORAGE_PATH);
|
|
|
|
|
}
|
2024-08-10 13:18:51 +03:00
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Private API for the Settings app
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
void bt_get_settings(Bt* bt, BtSettings* settings) {
|
|
|
|
|
furi_assert(bt);
|
|
|
|
|
furi_assert(settings);
|
|
|
|
|
|
|
|
|
|
BtMessage message = {
|
|
|
|
|
.lock = api_lock_alloc_locked(),
|
|
|
|
|
.type = BtMessageTypeGetSettings,
|
|
|
|
|
.data.settings = settings,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
furi_check(
|
|
|
|
|
furi_message_queue_put(bt->message_queue, &message, FuriWaitForever) == FuriStatusOk);
|
|
|
|
|
|
|
|
|
|
api_lock_wait_unlock_and_free(message.lock);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void bt_set_settings(Bt* bt, const BtSettings* settings) {
|
|
|
|
|
furi_assert(bt);
|
|
|
|
|
furi_assert(settings);
|
|
|
|
|
|
|
|
|
|
BtMessage message = {
|
|
|
|
|
.lock = api_lock_alloc_locked(),
|
|
|
|
|
.type = BtMessageTypeSetSettings,
|
|
|
|
|
.data.csettings = settings,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
furi_check(
|
|
|
|
|
furi_message_queue_put(bt->message_queue, &message, FuriWaitForever) == FuriStatusOk);
|
|
|
|
|
|
|
|
|
|
api_lock_wait_unlock_and_free(message.lock);
|
|
|
|
|
}
|