2021-09-13 11:25:37 +00:00
|
|
|
#include "gap.h"
|
|
|
|
|
|
|
|
#include "ble.h"
|
|
|
|
|
2022-01-05 16:10:18 +00:00
|
|
|
#include <furi_hal.h>
|
2021-12-08 11:28:01 +00:00
|
|
|
#include <furi.h>
|
2021-09-13 11:25:37 +00:00
|
|
|
|
2021-11-12 13:04:35 +00:00
|
|
|
#define TAG "BtGap"
|
2021-09-13 11:25:37 +00:00
|
|
|
|
|
|
|
#define FAST_ADV_TIMEOUT 30000
|
|
|
|
#define INITIAL_ADV_TIMEOUT 60000
|
|
|
|
|
|
|
|
typedef struct {
|
2021-10-12 16:41:42 +00:00
|
|
|
uint16_t gap_svc_handle;
|
|
|
|
uint16_t dev_name_char_handle;
|
|
|
|
uint16_t appearance_char_handle;
|
|
|
|
uint16_t connection_handle;
|
|
|
|
uint8_t adv_svc_uuid_len;
|
|
|
|
uint8_t adv_svc_uuid[20];
|
2021-12-08 11:28:01 +00:00
|
|
|
char* adv_name;
|
2021-09-13 11:25:37 +00:00
|
|
|
} GapSvc;
|
|
|
|
|
|
|
|
typedef struct {
|
2021-12-08 11:28:01 +00:00
|
|
|
GapSvc service;
|
|
|
|
GapConfig* config;
|
2021-10-12 16:41:42 +00:00
|
|
|
GapState state;
|
|
|
|
osMutexId_t state_mutex;
|
2022-01-02 22:36:42 +00:00
|
|
|
GapEventCallback on_event_cb;
|
2021-10-12 16:41:42 +00:00
|
|
|
void* context;
|
2021-12-21 12:16:25 +00:00
|
|
|
osTimerId_t advertise_timer;
|
2021-12-08 11:28:01 +00:00
|
|
|
FuriThread* thread;
|
2021-10-12 16:41:42 +00:00
|
|
|
osMessageQueueId_t command_queue;
|
|
|
|
bool enable_adv;
|
2021-09-13 11:25:37 +00:00
|
|
|
} Gap;
|
|
|
|
|
2021-09-15 16:58:32 +00:00
|
|
|
typedef enum {
|
|
|
|
GapCommandAdvFast,
|
|
|
|
GapCommandAdvLowPower,
|
|
|
|
GapCommandAdvStop,
|
2021-12-08 11:28:01 +00:00
|
|
|
GapCommandKillThread,
|
2021-09-15 16:58:32 +00:00
|
|
|
} GapCommand;
|
|
|
|
|
2022-01-02 22:36:42 +00:00
|
|
|
typedef struct {
|
|
|
|
GapScanCallback callback;
|
|
|
|
void* context;
|
|
|
|
} GapScan;
|
|
|
|
|
2021-09-13 11:25:37 +00:00
|
|
|
// Identity root key
|
2022-01-05 16:10:18 +00:00
|
|
|
static const uint8_t gap_irk[16] =
|
|
|
|
{0x12, 0x34, 0x56, 0x78, 0x9a, 0xbc, 0xde, 0xf0, 0x12, 0x34, 0x56, 0x78, 0x9a, 0xbc, 0xde, 0xf0};
|
2021-09-13 11:25:37 +00:00
|
|
|
// Encryption root key
|
2022-01-05 16:10:18 +00:00
|
|
|
static const uint8_t gap_erk[16] =
|
|
|
|
{0xfe, 0xdc, 0xba, 0x09, 0x87, 0x65, 0x43, 0x21, 0xfe, 0xdc, 0xba, 0x09, 0x87, 0x65, 0x43, 0x21};
|
2021-09-13 11:25:37 +00:00
|
|
|
|
|
|
|
static Gap* gap = NULL;
|
2022-01-02 22:36:42 +00:00
|
|
|
static GapScan* gap_scan = NULL;
|
2021-09-13 11:25:37 +00:00
|
|
|
|
2021-09-15 16:58:32 +00:00
|
|
|
static void gap_advertise_start(GapState new_state);
|
2021-12-08 11:28:01 +00:00
|
|
|
static int32_t gap_app(void* context);
|
2021-09-13 11:25:37 +00:00
|
|
|
|
2022-01-05 16:10:18 +00:00
|
|
|
SVCCTL_UserEvtFlowStatus_t SVCCTL_App_Notification(void* pckt) {
|
2021-12-08 11:28:01 +00:00
|
|
|
hci_event_pckt* event_pckt;
|
|
|
|
evt_le_meta_event* meta_evt;
|
|
|
|
evt_blue_aci* blue_evt;
|
|
|
|
hci_le_phy_update_complete_event_rp0* evt_le_phy_update_complete;
|
2021-09-15 16:58:32 +00:00
|
|
|
uint8_t tx_phy;
|
|
|
|
uint8_t rx_phy;
|
|
|
|
tBleStatus ret = BLE_STATUS_INVALID_PARAMS;
|
|
|
|
|
2021-12-08 11:28:01 +00:00
|
|
|
event_pckt = (hci_event_pckt*)((hci_uart_pckt*)pckt)->data;
|
2021-09-15 16:58:32 +00:00
|
|
|
|
2022-01-02 22:36:42 +00:00
|
|
|
if(gap) {
|
|
|
|
osMutexAcquire(gap->state_mutex, osWaitForever);
|
|
|
|
}
|
2022-01-05 16:10:18 +00:00
|
|
|
switch(event_pckt->evt) {
|
|
|
|
case EVT_DISCONN_COMPLETE: {
|
|
|
|
hci_disconnection_complete_event_rp0* disconnection_complete_event =
|
|
|
|
(hci_disconnection_complete_event_rp0*)event_pckt->data;
|
|
|
|
if(disconnection_complete_event->Connection_Handle == gap->service.connection_handle) {
|
|
|
|
gap->service.connection_handle = 0;
|
|
|
|
gap->state = GapStateIdle;
|
|
|
|
FURI_LOG_I(
|
|
|
|
TAG, "Disconnect from client. Reason: %02X", disconnection_complete_event->Reason);
|
|
|
|
}
|
|
|
|
if(gap->enable_adv) {
|
|
|
|
// Restart advertising
|
|
|
|
gap_advertise_start(GapStateAdvFast);
|
|
|
|
furi_hal_power_insomnia_exit();
|
|
|
|
}
|
|
|
|
GapEvent event = {.type = GapEventTypeDisconnected};
|
|
|
|
gap->on_event_cb(event, gap->context);
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case EVT_LE_META_EVENT:
|
|
|
|
meta_evt = (evt_le_meta_event*)event_pckt->data;
|
|
|
|
switch(meta_evt->subevent) {
|
2022-01-21 17:32:03 +00:00
|
|
|
case EVT_LE_CONN_UPDATE_COMPLETE: {
|
|
|
|
hci_le_connection_update_complete_event_rp0* event =
|
|
|
|
(hci_le_connection_update_complete_event_rp0*)meta_evt->data;
|
|
|
|
FURI_LOG_I(
|
|
|
|
TAG,
|
|
|
|
"Connection interval: %d, latency: %d, supervision timeout: %d",
|
|
|
|
event->Conn_Interval,
|
|
|
|
event->Conn_Latency,
|
|
|
|
event->Supervision_Timeout);
|
2022-01-05 16:10:18 +00:00
|
|
|
break;
|
2022-01-21 17:32:03 +00:00
|
|
|
}
|
2022-01-05 16:10:18 +00:00
|
|
|
|
|
|
|
case EVT_LE_PHY_UPDATE_COMPLETE:
|
|
|
|
evt_le_phy_update_complete = (hci_le_phy_update_complete_event_rp0*)meta_evt->data;
|
|
|
|
if(evt_le_phy_update_complete->Status) {
|
|
|
|
FURI_LOG_E(
|
|
|
|
TAG, "Update PHY failed, status %d", evt_le_phy_update_complete->Status);
|
|
|
|
} else {
|
|
|
|
FURI_LOG_I(TAG, "Update PHY succeed");
|
2021-09-13 11:25:37 +00:00
|
|
|
}
|
2022-01-05 16:10:18 +00:00
|
|
|
ret = hci_le_read_phy(gap->service.connection_handle, &tx_phy, &rx_phy);
|
|
|
|
if(ret) {
|
|
|
|
FURI_LOG_E(TAG, "Read PHY failed, status: %d", ret);
|
|
|
|
} else {
|
|
|
|
FURI_LOG_I(TAG, "PHY Params TX = %d, RX = %d ", tx_phy, rx_phy);
|
2021-09-13 11:25:37 +00:00
|
|
|
}
|
2022-01-05 16:10:18 +00:00
|
|
|
break;
|
2021-09-15 16:58:32 +00:00
|
|
|
|
2022-01-05 16:10:18 +00:00
|
|
|
case EVT_LE_CONN_COMPLETE:
|
|
|
|
furi_hal_power_insomnia_enter();
|
|
|
|
hci_le_connection_complete_event_rp0* connection_complete_event =
|
|
|
|
(hci_le_connection_complete_event_rp0*)meta_evt->data;
|
|
|
|
FURI_LOG_I(
|
|
|
|
TAG,
|
|
|
|
"Connection complete for connection handle 0x%x",
|
|
|
|
connection_complete_event->Connection_Handle);
|
|
|
|
|
|
|
|
// Stop advertising as connection completed
|
|
|
|
osTimerStop(gap->advertise_timer);
|
|
|
|
|
|
|
|
// Update connection status and handle
|
|
|
|
gap->state = GapStateConnected;
|
|
|
|
gap->service.connection_handle = connection_complete_event->Connection_Handle;
|
2022-01-21 17:32:03 +00:00
|
|
|
GapConnectionParams* params = &gap->config->conn_param;
|
|
|
|
if(aci_l2cap_connection_parameter_update_req(
|
|
|
|
gap->service.connection_handle,
|
|
|
|
params->conn_int_min,
|
|
|
|
params->conn_int_max,
|
|
|
|
params->slave_latency,
|
|
|
|
params->supervisor_timeout)) {
|
|
|
|
FURI_LOG_W(TAG, "Failed to request connection parameters update");
|
|
|
|
}
|
2022-01-05 16:10:18 +00:00
|
|
|
|
|
|
|
// Start pairing by sending security request
|
|
|
|
aci_gap_slave_security_req(connection_complete_event->Connection_Handle);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case EVT_LE_ADVERTISING_REPORT: {
|
|
|
|
if(gap_scan) {
|
|
|
|
GapAddress address;
|
|
|
|
hci_le_advertising_report_event_rp0* evt =
|
|
|
|
(hci_le_advertising_report_event_rp0*)meta_evt->data;
|
|
|
|
for(uint8_t i = 0; i < evt->Num_Reports; i++) {
|
|
|
|
Advertising_Report_t* rep = &evt->Advertising_Report[i];
|
|
|
|
address.type = rep->Address_Type;
|
|
|
|
// Original MAC addres is in inverted order
|
|
|
|
for(uint8_t j = 0; j < sizeof(address.mac); j++) {
|
|
|
|
address.mac[j] = rep->Address[sizeof(address.mac) - j - 1];
|
2022-01-02 22:36:42 +00:00
|
|
|
}
|
2022-01-05 16:10:18 +00:00
|
|
|
gap_scan->callback(address, gap_scan->context);
|
2022-01-02 22:36:42 +00:00
|
|
|
}
|
2021-09-13 11:25:37 +00:00
|
|
|
}
|
2022-01-05 16:10:18 +00:00
|
|
|
} break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2021-09-15 16:58:32 +00:00
|
|
|
break;
|
|
|
|
|
2022-01-05 16:10:18 +00:00
|
|
|
case EVT_VENDOR:
|
|
|
|
blue_evt = (evt_blue_aci*)event_pckt->data;
|
|
|
|
switch(blue_evt->ecode) {
|
|
|
|
aci_gap_pairing_complete_event_rp0* pairing_complete;
|
2021-09-15 16:58:32 +00:00
|
|
|
|
2022-01-05 16:10:18 +00:00
|
|
|
case EVT_BLUE_GAP_LIMITED_DISCOVERABLE:
|
|
|
|
FURI_LOG_I(TAG, "Limited discoverable event");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case EVT_BLUE_GAP_PASS_KEY_REQUEST: {
|
|
|
|
// Generate random PIN code
|
|
|
|
uint32_t pin = rand() % 999999;
|
|
|
|
aci_gap_pass_key_resp(gap->service.connection_handle, pin);
|
2022-02-24 12:38:06 +00:00
|
|
|
if(furi_hal_rtc_is_flag_set(FuriHalRtcFlagLock)) {
|
|
|
|
FURI_LOG_I(TAG, "Pass key request event. Pin: ******");
|
|
|
|
} else {
|
|
|
|
FURI_LOG_I(TAG, "Pass key request event. Pin: %06d", pin);
|
|
|
|
}
|
2022-01-05 16:10:18 +00:00
|
|
|
GapEvent event = {.type = GapEventTypePinCodeShow, .data.pin_code = pin};
|
|
|
|
gap->on_event_cb(event, gap->context);
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case EVT_BLUE_ATT_EXCHANGE_MTU_RESP: {
|
|
|
|
aci_att_exchange_mtu_resp_event_rp0* pr = (void*)blue_evt->data;
|
|
|
|
FURI_LOG_I(TAG, "Rx MTU size: %d", pr->Server_RX_MTU);
|
|
|
|
// Set maximum packet size given header size is 3 bytes
|
|
|
|
GapEvent event = {
|
|
|
|
.type = GapEventTypeUpdateMTU, .data.max_packet_size = pr->Server_RX_MTU - 3};
|
|
|
|
gap->on_event_cb(event, gap->context);
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case EVT_BLUE_GAP_AUTHORIZATION_REQUEST:
|
2022-01-21 17:32:03 +00:00
|
|
|
FURI_LOG_D(TAG, "Authorization request event");
|
2022-01-05 16:10:18 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case EVT_BLUE_GAP_SLAVE_SECURITY_INITIATED:
|
2022-01-21 17:32:03 +00:00
|
|
|
FURI_LOG_D(TAG, "Slave security initiated");
|
2022-01-05 16:10:18 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case EVT_BLUE_GAP_BOND_LOST:
|
2022-01-21 17:32:03 +00:00
|
|
|
FURI_LOG_D(TAG, "Bond lost event. Start rebonding");
|
2022-01-05 16:10:18 +00:00
|
|
|
aci_gap_allow_rebond(gap->service.connection_handle);
|
|
|
|
break;
|
2021-09-15 16:58:32 +00:00
|
|
|
|
2022-01-05 16:10:18 +00:00
|
|
|
case EVT_BLUE_GAP_DEVICE_FOUND:
|
2022-01-21 17:32:03 +00:00
|
|
|
FURI_LOG_D(TAG, "Device found event");
|
2022-01-05 16:10:18 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case EVT_BLUE_GAP_ADDR_NOT_RESOLVED:
|
2022-01-21 17:32:03 +00:00
|
|
|
FURI_LOG_D(TAG, "Address not resolved event");
|
2022-01-05 16:10:18 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case EVT_BLUE_GAP_KEYPRESS_NOTIFICATION:
|
2022-01-21 17:32:03 +00:00
|
|
|
FURI_LOG_D(TAG, "Key press notification event");
|
2022-01-05 16:10:18 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case EVT_BLUE_GAP_NUMERIC_COMPARISON_VALUE: {
|
|
|
|
uint32_t pin =
|
|
|
|
((aci_gap_numeric_comparison_value_event_rp0*)(blue_evt->data))->Numeric_Value;
|
|
|
|
FURI_LOG_I(TAG, "Verify numeric comparison: %06d", pin);
|
|
|
|
GapEvent event = {.type = GapEventTypePinCodeVerify, .data.pin_code = pin};
|
|
|
|
bool result = gap->on_event_cb(event, gap->context);
|
|
|
|
aci_gap_numeric_comparison_value_confirm_yesno(gap->service.connection_handle, result);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case EVT_BLUE_GAP_PAIRING_CMPLT:
|
|
|
|
pairing_complete = (aci_gap_pairing_complete_event_rp0*)blue_evt->data;
|
|
|
|
if(pairing_complete->Status) {
|
|
|
|
FURI_LOG_E(
|
|
|
|
TAG,
|
|
|
|
"Pairing failed with status: %d. Terminating connection",
|
|
|
|
pairing_complete->Status);
|
|
|
|
aci_gap_terminate(gap->service.connection_handle, 5);
|
|
|
|
} else {
|
|
|
|
FURI_LOG_I(TAG, "Pairing complete");
|
|
|
|
GapEvent event = {.type = GapEventTypeConnected};
|
|
|
|
gap->on_event_cb(event, gap->context);
|
2021-09-15 16:58:32 +00:00
|
|
|
}
|
2022-01-05 16:10:18 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case EVT_BLUE_GAP_PROCEDURE_COMPLETE:
|
2022-01-21 17:32:03 +00:00
|
|
|
FURI_LOG_D(TAG, "Procedure complete event");
|
2022-01-05 16:10:18 +00:00
|
|
|
break;
|
2022-01-21 17:32:03 +00:00
|
|
|
|
|
|
|
case EVT_BLUE_L2CAP_CONNECTION_UPDATE_RESP: {
|
|
|
|
uint16_t result =
|
|
|
|
((aci_l2cap_connection_update_resp_event_rp0*)(blue_evt->data))->Result;
|
|
|
|
if(result == 0) {
|
|
|
|
FURI_LOG_D(TAG, "Connection parameters accepted");
|
|
|
|
} else if(result == 1) {
|
|
|
|
FURI_LOG_D(TAG, "Connection parameters denied");
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2022-01-05 16:10:18 +00:00
|
|
|
}
|
|
|
|
default:
|
|
|
|
break;
|
2021-09-15 16:58:32 +00:00
|
|
|
}
|
2022-01-02 22:36:42 +00:00
|
|
|
if(gap) {
|
|
|
|
osMutexRelease(gap->state_mutex);
|
|
|
|
}
|
2021-09-15 16:58:32 +00:00
|
|
|
return SVCCTL_UserEvtFlowEnable;
|
2021-09-13 11:25:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void set_advertisment_service_uid(uint8_t* uid, uint8_t uid_len) {
|
|
|
|
if(uid_len == 2) {
|
2021-12-08 11:28:01 +00:00
|
|
|
gap->service.adv_svc_uuid[0] = AD_TYPE_16_BIT_SERV_UUID;
|
2022-01-05 16:10:18 +00:00
|
|
|
} else if(uid_len == 4) {
|
2021-12-08 11:28:01 +00:00
|
|
|
gap->service.adv_svc_uuid[0] = AD_TYPE_32_BIT_SERV_UUID;
|
2021-09-13 11:25:37 +00:00
|
|
|
} else if(uid_len == 16) {
|
2021-12-08 11:28:01 +00:00
|
|
|
gap->service.adv_svc_uuid[0] = AD_TYPE_128_BIT_SERV_UUID_CMPLT_LIST;
|
2021-09-13 11:25:37 +00:00
|
|
|
}
|
2021-12-08 11:28:01 +00:00
|
|
|
memcpy(&gap->service.adv_svc_uuid[gap->service.adv_svc_uuid_len], uid, uid_len);
|
|
|
|
gap->service.adv_svc_uuid_len += uid_len;
|
2021-09-13 11:25:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void gap_init_svc(Gap* gap) {
|
|
|
|
tBleStatus status;
|
|
|
|
uint32_t srd_bd_addr[2];
|
|
|
|
|
2021-10-12 16:41:42 +00:00
|
|
|
// HCI Reset to synchronise BLE Stack
|
2021-09-13 11:25:37 +00:00
|
|
|
hci_reset();
|
|
|
|
// Configure mac address
|
2022-01-05 16:10:18 +00:00
|
|
|
aci_hal_write_config_data(
|
|
|
|
CONFIG_DATA_PUBADDR_OFFSET, CONFIG_DATA_PUBADDR_LEN, gap->config->mac_address);
|
2021-09-13 11:25:37 +00:00
|
|
|
|
|
|
|
/* Static random Address
|
|
|
|
* The two upper bits shall be set to 1
|
|
|
|
* The lowest 32bits is read from the UDN to differentiate between devices
|
|
|
|
* The RNG may be used to provide a random number on each power on
|
|
|
|
*/
|
|
|
|
srd_bd_addr[1] = 0x0000ED6E;
|
|
|
|
srd_bd_addr[0] = LL_FLASH_GetUDN();
|
2022-01-05 16:10:18 +00:00
|
|
|
aci_hal_write_config_data(
|
|
|
|
CONFIG_DATA_RANDOM_ADDRESS_OFFSET, CONFIG_DATA_RANDOM_ADDRESS_LEN, (uint8_t*)srd_bd_addr);
|
2021-09-13 11:25:37 +00:00
|
|
|
// Set Identity root key used to derive LTK and CSRK
|
2022-01-05 16:10:18 +00:00
|
|
|
aci_hal_write_config_data(CONFIG_DATA_IR_OFFSET, CONFIG_DATA_IR_LEN, (uint8_t*)gap_irk);
|
2021-09-13 11:25:37 +00:00
|
|
|
// Set Encryption root key used to derive LTK and CSRK
|
2022-01-05 16:10:18 +00:00
|
|
|
aci_hal_write_config_data(CONFIG_DATA_ER_OFFSET, CONFIG_DATA_ER_LEN, (uint8_t*)gap_erk);
|
2021-09-13 11:25:37 +00:00
|
|
|
// Set TX Power to 0 dBm
|
|
|
|
aci_hal_set_tx_power_level(1, 0x19);
|
|
|
|
// Initialize GATT interface
|
|
|
|
aci_gatt_init();
|
|
|
|
// Initialize GAP interface
|
2021-12-08 11:28:01 +00:00
|
|
|
// Skip fist symbol AD_TYPE_COMPLETE_LOCAL_NAME
|
2022-01-05 16:10:18 +00:00
|
|
|
char* name = gap->service.adv_name + 1;
|
|
|
|
aci_gap_init(
|
|
|
|
GAP_PERIPHERAL_ROLE,
|
|
|
|
0,
|
|
|
|
strlen(name),
|
|
|
|
&gap->service.gap_svc_handle,
|
|
|
|
&gap->service.dev_name_char_handle,
|
|
|
|
&gap->service.appearance_char_handle);
|
2021-09-13 11:25:37 +00:00
|
|
|
|
|
|
|
// Set GAP characteristics
|
2022-01-05 16:10:18 +00:00
|
|
|
status = aci_gatt_update_char_value(
|
|
|
|
gap->service.gap_svc_handle,
|
|
|
|
gap->service.dev_name_char_handle,
|
|
|
|
0,
|
|
|
|
strlen(name),
|
|
|
|
(uint8_t*)name);
|
|
|
|
if(status) {
|
2021-11-12 13:04:35 +00:00
|
|
|
FURI_LOG_E(TAG, "Failed updating name characteristic: %d", status);
|
2021-09-13 11:25:37 +00:00
|
|
|
}
|
2022-01-05 16:10:18 +00:00
|
|
|
uint8_t gap_appearence_char_uuid[2] = {
|
|
|
|
gap->config->appearance_char & 0xff, gap->config->appearance_char >> 8};
|
|
|
|
status = aci_gatt_update_char_value(
|
|
|
|
gap->service.gap_svc_handle,
|
|
|
|
gap->service.appearance_char_handle,
|
|
|
|
0,
|
|
|
|
2,
|
|
|
|
gap_appearence_char_uuid);
|
2021-09-13 11:25:37 +00:00
|
|
|
if(status) {
|
2021-11-12 13:04:35 +00:00
|
|
|
FURI_LOG_E(TAG, "Failed updating appearence characteristic: %d", status);
|
2021-09-13 11:25:37 +00:00
|
|
|
}
|
|
|
|
// Set default PHY
|
|
|
|
hci_le_set_default_phy(ALL_PHYS_PREFERENCE, TX_2M_PREFERRED, RX_2M_PREFERRED);
|
|
|
|
// Set I/O capability
|
2021-12-08 11:28:01 +00:00
|
|
|
bool keypress_supported = false;
|
|
|
|
if(gap->config->pairing_method == GapPairingPinCodeShow) {
|
|
|
|
aci_gap_set_io_capability(IO_CAP_DISPLAY_ONLY);
|
2022-01-05 16:10:18 +00:00
|
|
|
} else if(gap->config->pairing_method == GapPairingPinCodeVerifyYesNo) {
|
2021-12-08 11:28:01 +00:00
|
|
|
aci_gap_set_io_capability(IO_CAP_DISPLAY_YES_NO);
|
|
|
|
keypress_supported = true;
|
|
|
|
}
|
2021-09-13 11:25:37 +00:00
|
|
|
// Setup authentication
|
2021-12-08 11:28:01 +00:00
|
|
|
aci_gap_set_authentication_requirement(
|
|
|
|
gap->config->bonding_mode,
|
|
|
|
CFG_MITM_PROTECTION,
|
|
|
|
CFG_SC_SUPPORT,
|
|
|
|
keypress_supported,
|
|
|
|
CFG_ENCRYPTION_KEY_SIZE_MIN,
|
|
|
|
CFG_ENCRYPTION_KEY_SIZE_MAX,
|
|
|
|
CFG_USED_FIXED_PIN,
|
|
|
|
0,
|
|
|
|
PUBLIC_ADDR);
|
2021-09-13 11:25:37 +00:00
|
|
|
// Configure whitelist
|
|
|
|
aci_gap_configure_whitelist();
|
|
|
|
}
|
|
|
|
|
2022-01-05 16:10:18 +00:00
|
|
|
static void gap_advertise_start(GapState new_state) {
|
2021-09-13 11:25:37 +00:00
|
|
|
tBleStatus status;
|
|
|
|
uint16_t min_interval;
|
|
|
|
uint16_t max_interval;
|
|
|
|
|
2022-01-05 16:10:18 +00:00
|
|
|
if(new_state == GapStateAdvFast) {
|
2021-09-13 11:25:37 +00:00
|
|
|
min_interval = 0x80; // 80 ms
|
|
|
|
max_interval = 0xa0; // 100 ms
|
|
|
|
} else {
|
|
|
|
min_interval = 0x0640; // 1 s
|
|
|
|
max_interval = 0x0fa0; // 2.5 s
|
|
|
|
}
|
|
|
|
// Stop advertising timer
|
|
|
|
osTimerStop(gap->advertise_timer);
|
|
|
|
|
2022-01-05 16:10:18 +00:00
|
|
|
if((new_state == GapStateAdvLowPower) &&
|
|
|
|
((gap->state == GapStateAdvFast) || (gap->state == GapStateAdvLowPower))) {
|
2021-09-13 11:25:37 +00:00
|
|
|
// Stop advertising
|
|
|
|
status = aci_gap_set_non_discoverable();
|
2022-01-05 16:10:18 +00:00
|
|
|
if(status) {
|
2021-11-12 13:04:35 +00:00
|
|
|
FURI_LOG_E(TAG, "Stop Advertising Failed, result: %d", status);
|
2021-09-13 11:25:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// Configure advertising
|
2022-01-05 16:10:18 +00:00
|
|
|
status = aci_gap_set_discoverable(
|
|
|
|
ADV_IND,
|
|
|
|
min_interval,
|
|
|
|
max_interval,
|
|
|
|
PUBLIC_ADDR,
|
|
|
|
0,
|
|
|
|
strlen(gap->service.adv_name),
|
|
|
|
(uint8_t*)gap->service.adv_name,
|
|
|
|
gap->service.adv_svc_uuid_len,
|
|
|
|
gap->service.adv_svc_uuid,
|
|
|
|
0,
|
|
|
|
0);
|
2021-09-13 11:25:37 +00:00
|
|
|
if(status) {
|
2021-11-12 13:04:35 +00:00
|
|
|
FURI_LOG_E(TAG, "Set discoverable err: %d", status);
|
2021-09-13 11:25:37 +00:00
|
|
|
}
|
2021-09-15 16:58:32 +00:00
|
|
|
gap->state = new_state;
|
2022-01-02 22:36:42 +00:00
|
|
|
GapEvent event = {.type = GapEventTypeStartAdvertising};
|
2021-10-12 16:41:42 +00:00
|
|
|
gap->on_event_cb(event, gap->context);
|
2021-09-13 11:25:37 +00:00
|
|
|
osTimerStart(gap->advertise_timer, INITIAL_ADV_TIMEOUT);
|
|
|
|
}
|
|
|
|
|
2021-09-15 16:58:32 +00:00
|
|
|
static void gap_advertise_stop() {
|
|
|
|
if(gap->state > GapStateIdle) {
|
2021-12-08 11:28:01 +00:00
|
|
|
if(gap->state == GapStateConnected) {
|
|
|
|
// Terminate connection
|
|
|
|
aci_gap_terminate(gap->service.connection_handle, 0x13);
|
|
|
|
}
|
2021-09-15 16:58:32 +00:00
|
|
|
// Stop advertising
|
|
|
|
osTimerStop(gap->advertise_timer);
|
|
|
|
aci_gap_set_non_discoverable();
|
|
|
|
gap->state = GapStateIdle;
|
|
|
|
}
|
2022-01-02 22:36:42 +00:00
|
|
|
GapEvent event = {.type = GapEventTypeStopAdvertising};
|
2021-10-12 16:41:42 +00:00
|
|
|
gap->on_event_cb(event, gap->context);
|
2021-09-15 16:58:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void gap_start_advertising() {
|
2021-12-08 11:28:01 +00:00
|
|
|
osMutexAcquire(gap->state_mutex, osWaitForever);
|
|
|
|
if(gap->state == GapStateIdle) {
|
|
|
|
gap->state = GapStateStartingAdv;
|
|
|
|
FURI_LOG_I(TAG, "Start advertising");
|
|
|
|
gap->enable_adv = true;
|
|
|
|
GapCommand command = GapCommandAdvFast;
|
|
|
|
furi_check(osMessageQueuePut(gap->command_queue, &command, 0, 0) == osOK);
|
|
|
|
}
|
|
|
|
osMutexRelease(gap->state_mutex);
|
2021-09-15 16:58:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void gap_stop_advertising() {
|
2021-12-08 11:28:01 +00:00
|
|
|
osMutexAcquire(gap->state_mutex, osWaitForever);
|
|
|
|
if(gap->state > GapStateIdle) {
|
|
|
|
FURI_LOG_I(TAG, "Stop advertising");
|
|
|
|
gap->enable_adv = false;
|
|
|
|
GapCommand command = GapCommandAdvStop;
|
|
|
|
furi_check(osMessageQueuePut(gap->command_queue, &command, 0, 0) == osOK);
|
|
|
|
}
|
|
|
|
osMutexRelease(gap->state_mutex);
|
2021-09-13 11:25:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void gap_advetise_timer_callback(void* context) {
|
2021-09-15 16:58:32 +00:00
|
|
|
GapCommand command = GapCommandAdvLowPower;
|
|
|
|
furi_check(osMessageQueuePut(gap->command_queue, &command, 0, 0) == osOK);
|
2021-09-13 11:25:37 +00:00
|
|
|
}
|
|
|
|
|
2022-01-02 22:36:42 +00:00
|
|
|
bool gap_init(GapConfig* config, GapEventCallback on_event_cb, void* context) {
|
2022-01-05 16:10:18 +00:00
|
|
|
if(!ble_glue_is_radio_stack_ready()) {
|
2021-09-13 11:25:37 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-02-18 19:53:46 +00:00
|
|
|
gap = malloc(sizeof(Gap));
|
2021-12-08 11:28:01 +00:00
|
|
|
gap->config = config;
|
2021-09-13 11:25:37 +00:00
|
|
|
srand(DWT->CYCCNT);
|
|
|
|
// Create advertising timer
|
2021-09-15 16:58:32 +00:00
|
|
|
gap->advertise_timer = osTimerNew(gap_advetise_timer_callback, osTimerOnce, NULL, NULL);
|
|
|
|
// Initialization of GATT & GAP layer
|
2021-12-08 11:28:01 +00:00
|
|
|
gap->service.adv_name = config->adv_name;
|
2021-09-13 11:25:37 +00:00
|
|
|
gap_init_svc(gap);
|
|
|
|
// Initialization of the BLE Services
|
|
|
|
SVCCTL_Init();
|
2021-09-15 16:58:32 +00:00
|
|
|
// Initialization of the GAP state
|
|
|
|
gap->state_mutex = osMutexNew(NULL);
|
2021-09-13 11:25:37 +00:00
|
|
|
gap->state = GapStateIdle;
|
2021-12-08 11:28:01 +00:00
|
|
|
gap->service.connection_handle = 0xFFFF;
|
2021-09-15 16:58:32 +00:00
|
|
|
gap->enable_adv = true;
|
2021-09-13 11:25:37 +00:00
|
|
|
|
|
|
|
// Thread configuration
|
2021-12-08 11:28:01 +00:00
|
|
|
gap->thread = furi_thread_alloc();
|
2022-02-16 17:52:34 +00:00
|
|
|
furi_thread_set_name(gap->thread, "BleGapDriver");
|
2021-12-08 11:28:01 +00:00
|
|
|
furi_thread_set_stack_size(gap->thread, 1024);
|
|
|
|
furi_thread_set_context(gap->thread, gap);
|
|
|
|
furi_thread_set_callback(gap->thread, gap_app);
|
|
|
|
furi_thread_start(gap->thread);
|
2021-09-13 11:25:37 +00:00
|
|
|
|
2021-09-15 16:58:32 +00:00
|
|
|
// Command queue allocation
|
|
|
|
gap->command_queue = osMessageQueueNew(8, sizeof(GapCommand), NULL);
|
|
|
|
|
2021-09-13 11:25:37 +00:00
|
|
|
uint8_t adv_service_uid[2];
|
2021-12-08 11:28:01 +00:00
|
|
|
gap->service.adv_svc_uuid_len = 1;
|
|
|
|
adv_service_uid[0] = gap->config->adv_service_uuid & 0xff;
|
|
|
|
adv_service_uid[1] = gap->config->adv_service_uuid >> 8;
|
2021-09-13 11:25:37 +00:00
|
|
|
set_advertisment_service_uid(adv_service_uid, sizeof(adv_service_uid));
|
2021-10-12 16:41:42 +00:00
|
|
|
|
|
|
|
// Set callback
|
|
|
|
gap->on_event_cb = on_event_cb;
|
|
|
|
gap->context = context;
|
2021-09-13 11:25:37 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-12-08 11:28:01 +00:00
|
|
|
GapState gap_get_state() {
|
|
|
|
GapState state;
|
2022-01-02 22:36:42 +00:00
|
|
|
if(gap) {
|
|
|
|
osMutexAcquire(gap->state_mutex, osWaitForever);
|
|
|
|
state = gap->state;
|
2022-01-05 16:10:18 +00:00
|
|
|
osMutexRelease(gap->state_mutex);
|
2022-01-02 22:36:42 +00:00
|
|
|
} else {
|
|
|
|
state = GapStateUninitialized;
|
|
|
|
}
|
2021-12-08 11:28:01 +00:00
|
|
|
return state;
|
|
|
|
}
|
|
|
|
|
2022-01-02 22:36:42 +00:00
|
|
|
void gap_start_scan(GapScanCallback callback, void* context) {
|
|
|
|
furi_assert(callback);
|
2022-02-18 19:53:46 +00:00
|
|
|
gap_scan = malloc(sizeof(GapScan));
|
2022-01-02 22:36:42 +00:00
|
|
|
gap_scan->callback = callback;
|
|
|
|
gap_scan->context = context;
|
|
|
|
// Scan interval 250 ms
|
|
|
|
hci_le_set_scan_parameters(1, 4000, 200, 0, 0);
|
|
|
|
hci_le_set_scan_enable(1, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void gap_stop_scan() {
|
|
|
|
furi_assert(gap_scan);
|
|
|
|
hci_le_set_scan_enable(0, 1);
|
|
|
|
free(gap_scan);
|
|
|
|
gap_scan = NULL;
|
|
|
|
}
|
|
|
|
|
2021-12-08 11:28:01 +00:00
|
|
|
void gap_thread_stop() {
|
|
|
|
if(gap) {
|
|
|
|
osMutexAcquire(gap->state_mutex, osWaitForever);
|
|
|
|
gap->enable_adv = false;
|
|
|
|
GapCommand command = GapCommandKillThread;
|
|
|
|
osMessageQueuePut(gap->command_queue, &command, 0, osWaitForever);
|
|
|
|
osMutexRelease(gap->state_mutex);
|
|
|
|
furi_thread_join(gap->thread);
|
|
|
|
furi_thread_free(gap->thread);
|
|
|
|
// Free resources
|
|
|
|
osMutexDelete(gap->state_mutex);
|
|
|
|
osMessageQueueDelete(gap->command_queue);
|
|
|
|
osTimerStop(gap->advertise_timer);
|
|
|
|
while(xTimerIsTimerActive(gap->advertise_timer) == pdTRUE) osDelay(1);
|
|
|
|
furi_check(osTimerDelete(gap->advertise_timer) == osOK);
|
|
|
|
free(gap);
|
|
|
|
gap = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-05 16:10:18 +00:00
|
|
|
static int32_t gap_app(void* context) {
|
2021-09-15 16:58:32 +00:00
|
|
|
GapCommand command;
|
2021-09-13 11:25:37 +00:00
|
|
|
while(1) {
|
2021-12-21 12:16:25 +00:00
|
|
|
osStatus_t status = osMessageQueueGet(gap->command_queue, &command, NULL, osWaitForever);
|
2021-12-15 17:39:06 +00:00
|
|
|
if(status != osOK) {
|
|
|
|
FURI_LOG_E(TAG, "Message queue get error: %d", status);
|
|
|
|
continue;
|
|
|
|
}
|
2021-09-15 16:58:32 +00:00
|
|
|
osMutexAcquire(gap->state_mutex, osWaitForever);
|
2021-12-08 11:28:01 +00:00
|
|
|
if(command == GapCommandKillThread) {
|
|
|
|
break;
|
|
|
|
}
|
2021-09-15 16:58:32 +00:00
|
|
|
if(command == GapCommandAdvFast) {
|
|
|
|
gap_advertise_start(GapStateAdvFast);
|
|
|
|
} else if(command == GapCommandAdvLowPower) {
|
|
|
|
gap_advertise_start(GapStateAdvLowPower);
|
|
|
|
} else if(command == GapCommandAdvStop) {
|
|
|
|
gap_advertise_stop();
|
|
|
|
}
|
|
|
|
osMutexRelease(gap->state_mutex);
|
2021-09-13 11:25:37 +00:00
|
|
|
}
|
2021-12-08 11:28:01 +00:00
|
|
|
|
|
|
|
return 0;
|
2021-09-13 11:25:37 +00:00
|
|
|
}
|