mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-12-20 09:43:23 +00:00
849f14e480
Thanks to WillyJL, ClaraCrazy, and XFW contributors
107 lines
2.3 KiB
C
107 lines
2.3 KiB
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
|
|
#include <furi_hal_bt.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define RECORD_BT "bt"
|
|
|
|
typedef struct Bt Bt;
|
|
|
|
typedef enum {
|
|
BtStatusUnavailable,
|
|
BtStatusOff,
|
|
BtStatusAdvertising,
|
|
BtStatusConnected,
|
|
} BtStatus;
|
|
|
|
typedef enum {
|
|
BtProfileSerial,
|
|
BtProfileHidKeyboard,
|
|
} BtProfile;
|
|
|
|
typedef struct {
|
|
uint8_t rssi;
|
|
uint32_t since;
|
|
} BtRssi;
|
|
|
|
typedef void (*BtStatusChangedCallback)(BtStatus status, void* context);
|
|
|
|
/** Change BLE Profile
|
|
* @note Call of this function leads to 2nd core restart
|
|
*
|
|
* @param bt Bt instance
|
|
* @param profile BtProfile
|
|
*
|
|
* @return true on success
|
|
*/
|
|
bool bt_set_profile(Bt* bt, BtProfile profile);
|
|
|
|
/** Disconnect from Central
|
|
*
|
|
* @param bt Bt instance
|
|
*/
|
|
void bt_disconnect(Bt* bt);
|
|
|
|
/** Set callback for Bluetooth status change notification
|
|
*
|
|
* @param bt Bt instance
|
|
* @param callback BtStatusChangedCallback instance
|
|
* @param context pointer to context
|
|
*/
|
|
void bt_set_status_changed_callback(Bt* bt, BtStatusChangedCallback callback, void* context);
|
|
|
|
/** Forget bonded devices
|
|
* @note Leads to wipe ble key storage and deleting bt.keys
|
|
*
|
|
* @param bt Bt instance
|
|
*/
|
|
void bt_forget_bonded_devices(Bt* bt);
|
|
|
|
/** Set keys storage file path
|
|
*
|
|
* @param bt Bt instance
|
|
* @param keys_storage_path Path to file with saved keys
|
|
*/
|
|
void bt_keys_storage_set_storage_path(Bt* bt, const char* keys_storage_path);
|
|
|
|
/** Set default keys storage file path
|
|
*
|
|
* @param bt Bt instance
|
|
*/
|
|
void bt_keys_storage_set_default_path(Bt* bt);
|
|
|
|
// New methods
|
|
|
|
void bt_set_profile_adv_name(Bt* bt, const char* fmt, ...);
|
|
|
|
const char* bt_get_profile_adv_name(Bt* bt);
|
|
|
|
void bt_set_profile_mac_address(Bt* bt, const uint8_t mac[6]);
|
|
|
|
const uint8_t* bt_get_profile_mac_address(Bt* bt);
|
|
|
|
bool bt_remote_rssi(Bt* bt, uint8_t* rssi);
|
|
|
|
void bt_set_profile_pairing_method(Bt* bt, GapPairing pairing_method);
|
|
GapPairing bt_get_profile_pairing_method(Bt* bt);
|
|
|
|
/** Stop saving new peer key to flash (in .bt.keys file)
|
|
*
|
|
*/
|
|
void bt_disable_peer_key_update(Bt* bt);
|
|
|
|
/** Enable saving peer key to internal flash (enable by default)
|
|
*
|
|
* @note This function should be called if bt_disable_peer_key_update was called before
|
|
*/
|
|
void bt_enable_peer_key_update(Bt* bt);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|