2022-01-05 16:10:18 +00:00
|
|
|
#include <furi_hal_bt.h>
|
2022-08-22 17:06:17 +00:00
|
|
|
|
|
|
|
#include <ble/ble.h>
|
|
|
|
#include <interface/patterns/ble_thread/shci/shci.h>
|
2021-05-18 09:23:14 +00:00
|
|
|
#include <stm32wbxx.h>
|
2021-10-12 16:41:42 +00:00
|
|
|
|
2022-01-05 16:10:18 +00:00
|
|
|
#include <furi_hal_version.h>
|
|
|
|
#include <furi_hal_bt_hid.h>
|
|
|
|
#include <furi_hal_bt_serial.h>
|
2021-12-08 11:28:01 +00:00
|
|
|
#include "battery_service.h"
|
|
|
|
|
2021-10-12 16:41:42 +00:00
|
|
|
#include <furi.h>
|
2021-05-18 09:23:14 +00:00
|
|
|
|
2021-11-13 02:41:54 +00:00
|
|
|
#define TAG "FuriHalBt"
|
|
|
|
|
2022-01-05 16:10:18 +00:00
|
|
|
#define FURI_HAL_BT_DEFAULT_MAC_ADDR \
|
|
|
|
{ 0x6c, 0x7a, 0xd8, 0xac, 0x57, 0x72 }
|
2021-12-08 11:28:01 +00:00
|
|
|
|
2022-04-27 15:53:48 +00:00
|
|
|
/* Time, in ms, to wait for mode transition before crashing */
|
|
|
|
#define C2_MODE_SWITCH_TIMEOUT 10000
|
|
|
|
|
2022-07-20 10:56:33 +00:00
|
|
|
FuriMutex* furi_hal_bt_core2_mtx = NULL;
|
2022-01-02 22:36:42 +00:00
|
|
|
static FuriHalBtStack furi_hal_bt_stack = FuriHalBtStackUnknown;
|
2021-11-04 17:26:41 +00:00
|
|
|
|
2021-12-08 11:28:01 +00:00
|
|
|
typedef void (*FuriHalBtProfileStart)(void);
|
|
|
|
typedef void (*FuriHalBtProfileStop)(void);
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
FuriHalBtProfileStart start;
|
|
|
|
FuriHalBtProfileStart stop;
|
|
|
|
GapConfig config;
|
|
|
|
uint16_t appearance_char;
|
|
|
|
uint16_t advertise_service_uuid;
|
|
|
|
} FuriHalBtProfileConfig;
|
|
|
|
|
|
|
|
FuriHalBtProfileConfig profile_config[FuriHalBtProfileNumber] = {
|
2022-01-05 16:10:18 +00:00
|
|
|
[FuriHalBtProfileSerial] =
|
|
|
|
{
|
|
|
|
.start = furi_hal_bt_serial_start,
|
|
|
|
.stop = furi_hal_bt_serial_stop,
|
|
|
|
.config =
|
|
|
|
{
|
|
|
|
.adv_service_uuid = 0x3080,
|
|
|
|
.appearance_char = 0x8600,
|
|
|
|
.bonding_mode = true,
|
|
|
|
.pairing_method = GapPairingPinCodeShow,
|
|
|
|
.mac_address = FURI_HAL_BT_DEFAULT_MAC_ADDR,
|
2022-01-21 17:32:03 +00:00
|
|
|
.conn_param =
|
|
|
|
{
|
2022-03-31 14:57:23 +00:00
|
|
|
.conn_int_min = 0x18, // 30 ms
|
|
|
|
.conn_int_max = 0x24, // 45 ms
|
2022-01-21 17:32:03 +00:00
|
|
|
.slave_latency = 0,
|
2022-02-09 12:03:27 +00:00
|
|
|
.supervisor_timeout = 0,
|
2022-01-21 17:32:03 +00:00
|
|
|
},
|
2022-01-05 16:10:18 +00:00
|
|
|
},
|
2021-12-08 11:28:01 +00:00
|
|
|
},
|
2022-01-05 16:10:18 +00:00
|
|
|
[FuriHalBtProfileHidKeyboard] =
|
|
|
|
{
|
|
|
|
.start = furi_hal_bt_hid_start,
|
|
|
|
.stop = furi_hal_bt_hid_stop,
|
|
|
|
.config =
|
|
|
|
{
|
|
|
|
.adv_service_uuid = HUMAN_INTERFACE_DEVICE_SERVICE_UUID,
|
|
|
|
.appearance_char = GAP_APPEARANCE_KEYBOARD,
|
|
|
|
.bonding_mode = true,
|
|
|
|
.pairing_method = GapPairingPinCodeVerifyYesNo,
|
|
|
|
.mac_address = FURI_HAL_BT_DEFAULT_MAC_ADDR,
|
2022-01-21 17:32:03 +00:00
|
|
|
.conn_param =
|
|
|
|
{
|
2022-03-31 14:57:23 +00:00
|
|
|
.conn_int_min = 0x18, // 30 ms
|
|
|
|
.conn_int_max = 0x24, // 45 ms
|
|
|
|
.slave_latency = 0,
|
|
|
|
.supervisor_timeout = 0,
|
2022-01-21 17:32:03 +00:00
|
|
|
},
|
2022-01-05 16:10:18 +00:00
|
|
|
},
|
2021-12-08 11:28:01 +00:00
|
|
|
},
|
|
|
|
};
|
|
|
|
FuriHalBtProfileConfig* current_profile = NULL;
|
|
|
|
|
2021-08-08 18:03:25 +00:00
|
|
|
void furi_hal_bt_init() {
|
2021-12-08 11:28:01 +00:00
|
|
|
if(!furi_hal_bt_core2_mtx) {
|
2022-07-20 10:56:33 +00:00
|
|
|
furi_hal_bt_core2_mtx = furi_mutex_alloc(FuriMutexTypeNormal);
|
2021-12-08 11:28:01 +00:00
|
|
|
furi_assert(furi_hal_bt_core2_mtx);
|
|
|
|
}
|
2021-11-13 02:41:54 +00:00
|
|
|
|
|
|
|
// Explicitly tell that we are in charge of CLK48 domain
|
2022-03-29 17:37:23 +00:00
|
|
|
if(!LL_HSEM_IsSemaphoreLocked(HSEM, CFG_HW_CLK48_CONFIG_SEMID)) {
|
2022-03-30 11:31:06 +00:00
|
|
|
furi_check(LL_HSEM_1StepLock(HSEM, CFG_HW_CLK48_CONFIG_SEMID) == 0);
|
2021-12-08 11:28:01 +00:00
|
|
|
}
|
2021-11-13 02:41:54 +00:00
|
|
|
|
|
|
|
// Start Core2
|
|
|
|
ble_glue_init();
|
2021-11-04 17:26:41 +00:00
|
|
|
}
|
|
|
|
|
2021-11-10 09:53:00 +00:00
|
|
|
void furi_hal_bt_lock_core2() {
|
|
|
|
furi_assert(furi_hal_bt_core2_mtx);
|
2022-07-20 10:56:33 +00:00
|
|
|
furi_check(furi_mutex_acquire(furi_hal_bt_core2_mtx, FuriWaitForever) == FuriStatusOk);
|
2021-11-10 09:53:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void furi_hal_bt_unlock_core2() {
|
|
|
|
furi_assert(furi_hal_bt_core2_mtx);
|
2022-07-20 10:56:33 +00:00
|
|
|
furi_check(furi_mutex_release(furi_hal_bt_core2_mtx) == FuriStatusOk);
|
2021-11-10 09:53:00 +00:00
|
|
|
}
|
|
|
|
|
2022-04-27 15:53:48 +00:00
|
|
|
static bool furi_hal_bt_radio_stack_is_supported(const BleGlueC2Info* info) {
|
2022-01-02 22:36:42 +00:00
|
|
|
bool supported = false;
|
2022-06-09 09:07:42 +00:00
|
|
|
if(info->StackType == INFO_STACK_TYPE_BLE_LIGHT) {
|
2022-01-02 22:36:42 +00:00
|
|
|
if(info->VersionMajor >= FURI_HAL_BT_STACK_VERSION_MAJOR &&
|
|
|
|
info->VersionMinor >= FURI_HAL_BT_STACK_VERSION_MINOR) {
|
|
|
|
furi_hal_bt_stack = FuriHalBtStackLight;
|
|
|
|
supported = true;
|
2022-01-05 16:10:18 +00:00
|
|
|
}
|
2022-06-09 09:07:42 +00:00
|
|
|
} else if(info->StackType == INFO_STACK_TYPE_BLE_FULL) {
|
|
|
|
if(info->VersionMajor >= FURI_HAL_BT_STACK_VERSION_MAJOR &&
|
|
|
|
info->VersionMinor >= FURI_HAL_BT_STACK_VERSION_MINOR) {
|
|
|
|
furi_hal_bt_stack = FuriHalBtStackFull;
|
|
|
|
supported = true;
|
|
|
|
}
|
2022-01-02 22:36:42 +00:00
|
|
|
} else {
|
|
|
|
furi_hal_bt_stack = FuriHalBtStackUnknown;
|
|
|
|
}
|
|
|
|
return supported;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool furi_hal_bt_start_radio_stack() {
|
|
|
|
bool res = false;
|
2021-11-04 17:26:41 +00:00
|
|
|
furi_assert(furi_hal_bt_core2_mtx);
|
|
|
|
|
2022-07-20 10:56:33 +00:00
|
|
|
furi_mutex_acquire(furi_hal_bt_core2_mtx, FuriWaitForever);
|
2022-01-02 22:36:42 +00:00
|
|
|
|
2021-05-18 09:23:14 +00:00
|
|
|
// Explicitly tell that we are in charge of CLK48 domain
|
2022-03-29 17:37:23 +00:00
|
|
|
if(!LL_HSEM_IsSemaphoreLocked(HSEM, CFG_HW_CLK48_CONFIG_SEMID)) {
|
2022-03-30 11:31:06 +00:00
|
|
|
furi_check(LL_HSEM_1StepLock(HSEM, CFG_HW_CLK48_CONFIG_SEMID) == 0);
|
2021-12-08 11:28:01 +00:00
|
|
|
}
|
2022-01-02 22:36:42 +00:00
|
|
|
|
|
|
|
do {
|
2022-04-27 15:53:48 +00:00
|
|
|
// Wait until C2 is started or timeout
|
|
|
|
if(!ble_glue_wait_for_c2_start(FURI_HAL_BT_C2_START_TIMEOUT)) {
|
|
|
|
FURI_LOG_E(TAG, "Core2 start failed");
|
2022-01-02 22:36:42 +00:00
|
|
|
ble_glue_thread_stop();
|
|
|
|
break;
|
|
|
|
}
|
2022-04-27 15:53:48 +00:00
|
|
|
|
|
|
|
// If C2 is running, start radio stack fw
|
|
|
|
if(!furi_hal_bt_ensure_c2_mode(BleGlueC2ModeStack)) {
|
|
|
|
break;
|
2022-01-14 08:39:41 +00:00
|
|
|
}
|
2022-04-27 15:53:48 +00:00
|
|
|
|
|
|
|
// Check whether we support radio stack
|
|
|
|
const BleGlueC2Info* c2_info = ble_glue_get_c2_info();
|
|
|
|
if(!furi_hal_bt_radio_stack_is_supported(c2_info)) {
|
2022-01-02 22:36:42 +00:00
|
|
|
FURI_LOG_E(TAG, "Unsupported radio stack");
|
2022-01-14 08:39:41 +00:00
|
|
|
// Don't stop SHCI for crypto enclave support
|
2022-01-05 16:10:18 +00:00
|
|
|
break;
|
2022-01-02 22:36:42 +00:00
|
|
|
}
|
|
|
|
// Starting radio stack
|
|
|
|
if(!ble_glue_start()) {
|
|
|
|
FURI_LOG_E(TAG, "Failed to start radio stack");
|
|
|
|
ble_glue_thread_stop();
|
|
|
|
ble_app_thread_stop();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
res = true;
|
|
|
|
} while(false);
|
2022-07-20 10:56:33 +00:00
|
|
|
furi_mutex_release(furi_hal_bt_core2_mtx);
|
2021-11-13 02:41:54 +00:00
|
|
|
|
2022-01-02 22:36:42 +00:00
|
|
|
return res;
|
2021-05-18 09:23:14 +00:00
|
|
|
}
|
|
|
|
|
2022-01-02 22:36:42 +00:00
|
|
|
FuriHalBtStack furi_hal_bt_get_radio_stack() {
|
|
|
|
return furi_hal_bt_stack;
|
|
|
|
}
|
|
|
|
|
2022-06-09 09:07:42 +00:00
|
|
|
bool furi_hal_bt_is_ble_gatt_gap_supported() {
|
|
|
|
if(furi_hal_bt_stack == FuriHalBtStackLight || furi_hal_bt_stack == FuriHalBtStackFull) {
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool furi_hal_bt_is_testing_supported() {
|
|
|
|
if(furi_hal_bt_stack == FuriHalBtStackFull) {
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-02 22:36:42 +00:00
|
|
|
bool furi_hal_bt_start_app(FuriHalBtProfile profile, GapEventCallback event_cb, void* context) {
|
2021-12-08 11:28:01 +00:00
|
|
|
furi_assert(event_cb);
|
|
|
|
furi_assert(profile < FuriHalBtProfileNumber);
|
2022-01-02 22:36:42 +00:00
|
|
|
bool ret = false;
|
2021-12-08 11:28:01 +00:00
|
|
|
|
|
|
|
do {
|
2022-01-02 22:36:42 +00:00
|
|
|
if(!ble_glue_is_radio_stack_ready()) {
|
|
|
|
FURI_LOG_E(TAG, "Can't start BLE App - radio stack did not start");
|
|
|
|
break;
|
|
|
|
}
|
2022-06-09 09:07:42 +00:00
|
|
|
if(!furi_hal_bt_is_ble_gatt_gap_supported()) {
|
2022-01-02 22:36:42 +00:00
|
|
|
FURI_LOG_E(TAG, "Can't start Ble App - unsupported radio stack");
|
2021-12-08 11:28:01 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
// Set mac address
|
|
|
|
memcpy(
|
|
|
|
profile_config[profile].config.mac_address,
|
|
|
|
furi_hal_version_get_ble_mac(),
|
2022-01-05 16:10:18 +00:00
|
|
|
sizeof(profile_config[profile].config.mac_address));
|
2021-12-08 11:28:01 +00:00
|
|
|
// Set advertise name
|
|
|
|
strlcpy(
|
|
|
|
profile_config[profile].config.adv_name,
|
|
|
|
furi_hal_version_get_ble_local_device_name_ptr(),
|
2022-01-05 16:10:18 +00:00
|
|
|
FURI_HAL_VERSION_DEVICE_NAME_LENGTH);
|
2021-12-08 11:28:01 +00:00
|
|
|
// Configure GAP
|
|
|
|
GapConfig* config = &profile_config[profile].config;
|
|
|
|
if(profile == FuriHalBtProfileSerial) {
|
|
|
|
config->adv_service_uuid |= furi_hal_version_get_hw_color();
|
|
|
|
} else if(profile == FuriHalBtProfileHidKeyboard) {
|
|
|
|
// Change MAC address for HID profile
|
|
|
|
config->mac_address[2]++;
|
2022-07-08 12:36:34 +00:00
|
|
|
// Change name Flipper -> Control
|
|
|
|
const char* clicker_str = "Control";
|
2021-12-15 17:39:06 +00:00
|
|
|
memcpy(&config->adv_name[1], clicker_str, strlen(clicker_str));
|
2021-12-08 11:28:01 +00:00
|
|
|
}
|
2022-01-02 22:36:42 +00:00
|
|
|
if(!gap_init(config, event_cb, context)) {
|
2021-12-08 11:28:01 +00:00
|
|
|
gap_thread_stop();
|
|
|
|
FURI_LOG_E(TAG, "Failed to init GAP");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// Start selected profile services
|
2022-06-09 09:07:42 +00:00
|
|
|
if(furi_hal_bt_is_ble_gatt_gap_supported()) {
|
2022-01-02 22:36:42 +00:00
|
|
|
profile_config[profile].start();
|
|
|
|
}
|
|
|
|
ret = true;
|
2021-12-08 11:28:01 +00:00
|
|
|
} while(false);
|
|
|
|
current_profile = &profile_config[profile];
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
[FL-2399, FL-2261] Tickless sleep shenanigans (#1168)
* Disable USART in sleep
* Restore UART state on suspend/resume
* FuriHal: Enable stop mode and add insomnia to I2C and SPI
* Remove IDLE interrupt
* FuriHal: add FPU isr and disable all FPU interrupt, add core2 stop mode configuration on deep sleep
* FuriHal: tie stop mode debug with debug rtc flag
* FuriHal: adjust flash latency on clock switch, tie mcu debug with RTC debug flag
* FuriHal: move resource init to early stage
* Add EXTI pending check, enable debug traps with compile-time flag
* Wrap sleep debug functions in conditional compilation
* Remove erroneous changed
* Do not use CSS, remove it from everywhere
* Enable/disable USB on VBUS connect (prototype)
* FuriHal: add LPMS and DEEPSLEEP magic, workaround state inconsistency between cores
* FuriHal: honor c1 LMPS
* USB mode switch fix
* Applications: add flags and insomnia bypass system
* Correct spelling
* FuriHal: cleanup insomnia usage, reset sleep flags on wakeup, add shutdown api
* FuriHal: extra check on reinit request
* FuriHal: rename gpio_display_rst pin to gpio_display_rst_n
* FuriHal: add debug HAL
* FuriHal: add some magic to core2 reload procedure, fix issue with crash on ble keyboard exit
* FuriHal: cleanup ble glue, add BLE_GLUE_DEBUG flag
* FuriHal: ble reinit API, move os timer to LPTIM1 for deep sleep capability, shutdown that works
* FuriHal: take insomnia while shutdown
* Remove USB switch on/off on VBUS change
* Better tick skew handling
* Improve tick consistency under load
* Add USB_HP dummy IRQ handler
* Move interrupt check closer to sleep
* Clean up includes
* Re-enable Insomnia globally
* FuriHal: enable CSS
* FuriHal: remove questionable core2 clock shenanigans
* FuriHal: use core1 RCC registers in idle timer config
* FuriHal: return back CSS handlers, add lptim isr dispatching
Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
Co-authored-by: nminaylov <nm29719@gmail.com>
2022-04-29 13:29:51 +00:00
|
|
|
void furi_hal_bt_reinit() {
|
|
|
|
FURI_LOG_I(TAG, "Disconnect and stop advertising");
|
|
|
|
furi_hal_bt_stop_advertising();
|
2021-12-08 11:28:01 +00:00
|
|
|
|
|
|
|
FURI_LOG_I(TAG, "Stop current profile services");
|
|
|
|
current_profile->stop();
|
[FL-2399, FL-2261] Tickless sleep shenanigans (#1168)
* Disable USART in sleep
* Restore UART state on suspend/resume
* FuriHal: Enable stop mode and add insomnia to I2C and SPI
* Remove IDLE interrupt
* FuriHal: add FPU isr and disable all FPU interrupt, add core2 stop mode configuration on deep sleep
* FuriHal: tie stop mode debug with debug rtc flag
* FuriHal: adjust flash latency on clock switch, tie mcu debug with RTC debug flag
* FuriHal: move resource init to early stage
* Add EXTI pending check, enable debug traps with compile-time flag
* Wrap sleep debug functions in conditional compilation
* Remove erroneous changed
* Do not use CSS, remove it from everywhere
* Enable/disable USB on VBUS connect (prototype)
* FuriHal: add LPMS and DEEPSLEEP magic, workaround state inconsistency between cores
* FuriHal: honor c1 LMPS
* USB mode switch fix
* Applications: add flags and insomnia bypass system
* Correct spelling
* FuriHal: cleanup insomnia usage, reset sleep flags on wakeup, add shutdown api
* FuriHal: extra check on reinit request
* FuriHal: rename gpio_display_rst pin to gpio_display_rst_n
* FuriHal: add debug HAL
* FuriHal: add some magic to core2 reload procedure, fix issue with crash on ble keyboard exit
* FuriHal: cleanup ble glue, add BLE_GLUE_DEBUG flag
* FuriHal: ble reinit API, move os timer to LPTIM1 for deep sleep capability, shutdown that works
* FuriHal: take insomnia while shutdown
* Remove USB switch on/off on VBUS change
* Better tick skew handling
* Improve tick consistency under load
* Add USB_HP dummy IRQ handler
* Move interrupt check closer to sleep
* Clean up includes
* Re-enable Insomnia globally
* FuriHal: enable CSS
* FuriHal: remove questionable core2 clock shenanigans
* FuriHal: use core1 RCC registers in idle timer config
* FuriHal: return back CSS handlers, add lptim isr dispatching
Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
Co-authored-by: nminaylov <nm29719@gmail.com>
2022-04-29 13:29:51 +00:00
|
|
|
|
|
|
|
// Magic happens here
|
|
|
|
hci_reset();
|
|
|
|
|
2021-12-08 11:28:01 +00:00
|
|
|
FURI_LOG_I(TAG, "Stop BLE related RTOS threads");
|
|
|
|
ble_app_thread_stop();
|
|
|
|
gap_thread_stop();
|
[FL-2399, FL-2261] Tickless sleep shenanigans (#1168)
* Disable USART in sleep
* Restore UART state on suspend/resume
* FuriHal: Enable stop mode and add insomnia to I2C and SPI
* Remove IDLE interrupt
* FuriHal: add FPU isr and disable all FPU interrupt, add core2 stop mode configuration on deep sleep
* FuriHal: tie stop mode debug with debug rtc flag
* FuriHal: adjust flash latency on clock switch, tie mcu debug with RTC debug flag
* FuriHal: move resource init to early stage
* Add EXTI pending check, enable debug traps with compile-time flag
* Wrap sleep debug functions in conditional compilation
* Remove erroneous changed
* Do not use CSS, remove it from everywhere
* Enable/disable USB on VBUS connect (prototype)
* FuriHal: add LPMS and DEEPSLEEP magic, workaround state inconsistency between cores
* FuriHal: honor c1 LMPS
* USB mode switch fix
* Applications: add flags and insomnia bypass system
* Correct spelling
* FuriHal: cleanup insomnia usage, reset sleep flags on wakeup, add shutdown api
* FuriHal: extra check on reinit request
* FuriHal: rename gpio_display_rst pin to gpio_display_rst_n
* FuriHal: add debug HAL
* FuriHal: add some magic to core2 reload procedure, fix issue with crash on ble keyboard exit
* FuriHal: cleanup ble glue, add BLE_GLUE_DEBUG flag
* FuriHal: ble reinit API, move os timer to LPTIM1 for deep sleep capability, shutdown that works
* FuriHal: take insomnia while shutdown
* Remove USB switch on/off on VBUS change
* Better tick skew handling
* Improve tick consistency under load
* Add USB_HP dummy IRQ handler
* Move interrupt check closer to sleep
* Clean up includes
* Re-enable Insomnia globally
* FuriHal: enable CSS
* FuriHal: remove questionable core2 clock shenanigans
* FuriHal: use core1 RCC registers in idle timer config
* FuriHal: return back CSS handlers, add lptim isr dispatching
Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
Co-authored-by: nminaylov <nm29719@gmail.com>
2022-04-29 13:29:51 +00:00
|
|
|
|
2021-12-08 11:28:01 +00:00
|
|
|
FURI_LOG_I(TAG, "Reset SHCI");
|
[FL-2399, FL-2261] Tickless sleep shenanigans (#1168)
* Disable USART in sleep
* Restore UART state on suspend/resume
* FuriHal: Enable stop mode and add insomnia to I2C and SPI
* Remove IDLE interrupt
* FuriHal: add FPU isr and disable all FPU interrupt, add core2 stop mode configuration on deep sleep
* FuriHal: tie stop mode debug with debug rtc flag
* FuriHal: adjust flash latency on clock switch, tie mcu debug with RTC debug flag
* FuriHal: move resource init to early stage
* Add EXTI pending check, enable debug traps with compile-time flag
* Wrap sleep debug functions in conditional compilation
* Remove erroneous changed
* Do not use CSS, remove it from everywhere
* Enable/disable USB on VBUS connect (prototype)
* FuriHal: add LPMS and DEEPSLEEP magic, workaround state inconsistency between cores
* FuriHal: honor c1 LMPS
* USB mode switch fix
* Applications: add flags and insomnia bypass system
* Correct spelling
* FuriHal: cleanup insomnia usage, reset sleep flags on wakeup, add shutdown api
* FuriHal: extra check on reinit request
* FuriHal: rename gpio_display_rst pin to gpio_display_rst_n
* FuriHal: add debug HAL
* FuriHal: add some magic to core2 reload procedure, fix issue with crash on ble keyboard exit
* FuriHal: cleanup ble glue, add BLE_GLUE_DEBUG flag
* FuriHal: ble reinit API, move os timer to LPTIM1 for deep sleep capability, shutdown that works
* FuriHal: take insomnia while shutdown
* Remove USB switch on/off on VBUS change
* Better tick skew handling
* Improve tick consistency under load
* Add USB_HP dummy IRQ handler
* Move interrupt check closer to sleep
* Clean up includes
* Re-enable Insomnia globally
* FuriHal: enable CSS
* FuriHal: remove questionable core2 clock shenanigans
* FuriHal: use core1 RCC registers in idle timer config
* FuriHal: return back CSS handlers, add lptim isr dispatching
Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
Co-authored-by: nminaylov <nm29719@gmail.com>
2022-04-29 13:29:51 +00:00
|
|
|
furi_check(ble_glue_reinit_c2());
|
|
|
|
|
2022-07-20 10:56:33 +00:00
|
|
|
furi_delay_ms(100);
|
2021-12-08 11:28:01 +00:00
|
|
|
ble_glue_thread_stop();
|
[FL-2399, FL-2261] Tickless sleep shenanigans (#1168)
* Disable USART in sleep
* Restore UART state on suspend/resume
* FuriHal: Enable stop mode and add insomnia to I2C and SPI
* Remove IDLE interrupt
* FuriHal: add FPU isr and disable all FPU interrupt, add core2 stop mode configuration on deep sleep
* FuriHal: tie stop mode debug with debug rtc flag
* FuriHal: adjust flash latency on clock switch, tie mcu debug with RTC debug flag
* FuriHal: move resource init to early stage
* Add EXTI pending check, enable debug traps with compile-time flag
* Wrap sleep debug functions in conditional compilation
* Remove erroneous changed
* Do not use CSS, remove it from everywhere
* Enable/disable USB on VBUS connect (prototype)
* FuriHal: add LPMS and DEEPSLEEP magic, workaround state inconsistency between cores
* FuriHal: honor c1 LMPS
* USB mode switch fix
* Applications: add flags and insomnia bypass system
* Correct spelling
* FuriHal: cleanup insomnia usage, reset sleep flags on wakeup, add shutdown api
* FuriHal: extra check on reinit request
* FuriHal: rename gpio_display_rst pin to gpio_display_rst_n
* FuriHal: add debug HAL
* FuriHal: add some magic to core2 reload procedure, fix issue with crash on ble keyboard exit
* FuriHal: cleanup ble glue, add BLE_GLUE_DEBUG flag
* FuriHal: ble reinit API, move os timer to LPTIM1 for deep sleep capability, shutdown that works
* FuriHal: take insomnia while shutdown
* Remove USB switch on/off on VBUS change
* Better tick skew handling
* Improve tick consistency under load
* Add USB_HP dummy IRQ handler
* Move interrupt check closer to sleep
* Clean up includes
* Re-enable Insomnia globally
* FuriHal: enable CSS
* FuriHal: remove questionable core2 clock shenanigans
* FuriHal: use core1 RCC registers in idle timer config
* FuriHal: return back CSS handlers, add lptim isr dispatching
Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
Co-authored-by: nminaylov <nm29719@gmail.com>
2022-04-29 13:29:51 +00:00
|
|
|
|
2021-12-08 11:28:01 +00:00
|
|
|
FURI_LOG_I(TAG, "Start BT initialization");
|
|
|
|
furi_hal_bt_init();
|
[FL-2399, FL-2261] Tickless sleep shenanigans (#1168)
* Disable USART in sleep
* Restore UART state on suspend/resume
* FuriHal: Enable stop mode and add insomnia to I2C and SPI
* Remove IDLE interrupt
* FuriHal: add FPU isr and disable all FPU interrupt, add core2 stop mode configuration on deep sleep
* FuriHal: tie stop mode debug with debug rtc flag
* FuriHal: adjust flash latency on clock switch, tie mcu debug with RTC debug flag
* FuriHal: move resource init to early stage
* Add EXTI pending check, enable debug traps with compile-time flag
* Wrap sleep debug functions in conditional compilation
* Remove erroneous changed
* Do not use CSS, remove it from everywhere
* Enable/disable USB on VBUS connect (prototype)
* FuriHal: add LPMS and DEEPSLEEP magic, workaround state inconsistency between cores
* FuriHal: honor c1 LMPS
* USB mode switch fix
* Applications: add flags and insomnia bypass system
* Correct spelling
* FuriHal: cleanup insomnia usage, reset sleep flags on wakeup, add shutdown api
* FuriHal: extra check on reinit request
* FuriHal: rename gpio_display_rst pin to gpio_display_rst_n
* FuriHal: add debug HAL
* FuriHal: add some magic to core2 reload procedure, fix issue with crash on ble keyboard exit
* FuriHal: cleanup ble glue, add BLE_GLUE_DEBUG flag
* FuriHal: ble reinit API, move os timer to LPTIM1 for deep sleep capability, shutdown that works
* FuriHal: take insomnia while shutdown
* Remove USB switch on/off on VBUS change
* Better tick skew handling
* Improve tick consistency under load
* Add USB_HP dummy IRQ handler
* Move interrupt check closer to sleep
* Clean up includes
* Re-enable Insomnia globally
* FuriHal: enable CSS
* FuriHal: remove questionable core2 clock shenanigans
* FuriHal: use core1 RCC registers in idle timer config
* FuriHal: return back CSS handlers, add lptim isr dispatching
Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
Co-authored-by: nminaylov <nm29719@gmail.com>
2022-04-29 13:29:51 +00:00
|
|
|
|
2022-01-02 22:36:42 +00:00
|
|
|
furi_hal_bt_start_radio_stack();
|
[FL-2399, FL-2261] Tickless sleep shenanigans (#1168)
* Disable USART in sleep
* Restore UART state on suspend/resume
* FuriHal: Enable stop mode and add insomnia to I2C and SPI
* Remove IDLE interrupt
* FuriHal: add FPU isr and disable all FPU interrupt, add core2 stop mode configuration on deep sleep
* FuriHal: tie stop mode debug with debug rtc flag
* FuriHal: adjust flash latency on clock switch, tie mcu debug with RTC debug flag
* FuriHal: move resource init to early stage
* Add EXTI pending check, enable debug traps with compile-time flag
* Wrap sleep debug functions in conditional compilation
* Remove erroneous changed
* Do not use CSS, remove it from everywhere
* Enable/disable USB on VBUS connect (prototype)
* FuriHal: add LPMS and DEEPSLEEP magic, workaround state inconsistency between cores
* FuriHal: honor c1 LMPS
* USB mode switch fix
* Applications: add flags and insomnia bypass system
* Correct spelling
* FuriHal: cleanup insomnia usage, reset sleep flags on wakeup, add shutdown api
* FuriHal: extra check on reinit request
* FuriHal: rename gpio_display_rst pin to gpio_display_rst_n
* FuriHal: add debug HAL
* FuriHal: add some magic to core2 reload procedure, fix issue with crash on ble keyboard exit
* FuriHal: cleanup ble glue, add BLE_GLUE_DEBUG flag
* FuriHal: ble reinit API, move os timer to LPTIM1 for deep sleep capability, shutdown that works
* FuriHal: take insomnia while shutdown
* Remove USB switch on/off on VBUS change
* Better tick skew handling
* Improve tick consistency under load
* Add USB_HP dummy IRQ handler
* Move interrupt check closer to sleep
* Clean up includes
* Re-enable Insomnia globally
* FuriHal: enable CSS
* FuriHal: remove questionable core2 clock shenanigans
* FuriHal: use core1 RCC registers in idle timer config
* FuriHal: return back CSS handlers, add lptim isr dispatching
Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
Co-authored-by: nminaylov <nm29719@gmail.com>
2022-04-29 13:29:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool furi_hal_bt_change_app(FuriHalBtProfile profile, GapEventCallback event_cb, void* context) {
|
|
|
|
furi_assert(event_cb);
|
|
|
|
furi_assert(profile < FuriHalBtProfileNumber);
|
|
|
|
bool ret = true;
|
|
|
|
|
|
|
|
furi_hal_bt_reinit();
|
|
|
|
|
2021-12-08 11:28:01 +00:00
|
|
|
ret = furi_hal_bt_start_app(profile, event_cb, context);
|
|
|
|
if(ret) {
|
|
|
|
current_profile = &profile_config[profile];
|
|
|
|
}
|
|
|
|
return ret;
|
2021-05-18 09:23:14 +00:00
|
|
|
}
|
|
|
|
|
2022-02-07 13:37:56 +00:00
|
|
|
bool furi_hal_bt_is_active() {
|
2022-01-02 22:36:42 +00:00
|
|
|
return gap_get_state() > GapStateIdle;
|
|
|
|
}
|
|
|
|
|
2021-09-15 16:58:32 +00:00
|
|
|
void furi_hal_bt_start_advertising() {
|
|
|
|
if(gap_get_state() == GapStateIdle) {
|
|
|
|
gap_start_advertising();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void furi_hal_bt_stop_advertising() {
|
2021-09-16 16:12:07 +00:00
|
|
|
if(furi_hal_bt_is_active()) {
|
2021-09-15 16:58:32 +00:00
|
|
|
gap_stop_advertising();
|
2021-09-21 09:48:08 +00:00
|
|
|
while(furi_hal_bt_is_active()) {
|
2022-07-20 10:56:33 +00:00
|
|
|
furi_delay_tick(1);
|
2021-09-21 09:48:08 +00:00
|
|
|
}
|
2021-09-15 16:58:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-08 11:28:01 +00:00
|
|
|
void furi_hal_bt_update_battery_level(uint8_t battery_level) {
|
|
|
|
if(battery_svc_is_started()) {
|
|
|
|
battery_svc_update_level(battery_level);
|
2021-10-12 16:41:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-24 13:42:02 +00:00
|
|
|
void furi_hal_bt_update_power_state() {
|
|
|
|
if(battery_svc_is_started()) {
|
|
|
|
battery_svc_update_power_state();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-13 02:41:54 +00:00
|
|
|
void furi_hal_bt_get_key_storage_buff(uint8_t** key_buff_addr, uint16_t* key_buff_size) {
|
|
|
|
ble_app_get_key_storage_buff(key_buff_addr, key_buff_size);
|
2021-11-04 17:26:41 +00:00
|
|
|
}
|
|
|
|
|
2022-01-05 16:10:18 +00:00
|
|
|
void furi_hal_bt_set_key_storage_change_callback(
|
|
|
|
BleGlueKeyStorageChangedCallback callback,
|
|
|
|
void* context) {
|
2021-11-04 17:26:41 +00:00
|
|
|
furi_assert(callback);
|
|
|
|
ble_glue_set_key_storage_changed_callback(callback, context);
|
|
|
|
}
|
|
|
|
|
|
|
|
void furi_hal_bt_nvm_sram_sem_acquire() {
|
2022-03-29 17:37:23 +00:00
|
|
|
while(LL_HSEM_1StepLock(HSEM, CFG_HW_BLE_NVM_SRAM_SEMID)) {
|
2022-06-20 14:54:48 +00:00
|
|
|
furi_thread_yield();
|
2021-11-04 17:26:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void furi_hal_bt_nvm_sram_sem_release() {
|
2022-03-29 17:37:23 +00:00
|
|
|
LL_HSEM_ReleaseLock(HSEM, CFG_HW_BLE_NVM_SRAM_SEMID, 0);
|
2021-11-04 17:26:41 +00:00
|
|
|
}
|
|
|
|
|
2022-01-21 17:32:03 +00:00
|
|
|
bool furi_hal_bt_clear_white_list() {
|
|
|
|
furi_hal_bt_nvm_sram_sem_acquire();
|
|
|
|
tBleStatus status = aci_gap_clear_security_db();
|
|
|
|
if(status) {
|
|
|
|
FURI_LOG_E(TAG, "Clear while list failed with status %d", status);
|
|
|
|
}
|
|
|
|
furi_hal_bt_nvm_sram_sem_release();
|
|
|
|
return status != BLE_STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2021-08-08 18:03:25 +00:00
|
|
|
void furi_hal_bt_dump_state(string_t buffer) {
|
2022-01-05 16:10:18 +00:00
|
|
|
if(furi_hal_bt_is_alive()) {
|
2021-05-18 09:23:14 +00:00
|
|
|
uint8_t HCI_Version;
|
|
|
|
uint16_t HCI_Revision;
|
|
|
|
uint8_t LMP_PAL_Version;
|
|
|
|
uint16_t Manufacturer_Name;
|
|
|
|
uint16_t LMP_PAL_Subversion;
|
|
|
|
|
|
|
|
tBleStatus ret = hci_read_local_version_information(
|
2022-01-05 16:10:18 +00:00
|
|
|
&HCI_Version, &HCI_Revision, &LMP_PAL_Version, &Manufacturer_Name, &LMP_PAL_Subversion);
|
2021-05-18 09:23:14 +00:00
|
|
|
|
2022-01-05 16:10:18 +00:00
|
|
|
string_cat_printf(
|
|
|
|
buffer,
|
2021-05-18 09:23:14 +00:00
|
|
|
"Ret: %d, HCI_Version: %d, HCI_Revision: %d, LMP_PAL_Version: %d, Manufacturer_Name: %d, LMP_PAL_Subversion: %d",
|
2022-01-05 16:10:18 +00:00
|
|
|
ret,
|
|
|
|
HCI_Version,
|
|
|
|
HCI_Revision,
|
|
|
|
LMP_PAL_Version,
|
|
|
|
Manufacturer_Name,
|
|
|
|
LMP_PAL_Subversion);
|
2021-05-18 09:23:14 +00:00
|
|
|
} else {
|
|
|
|
string_cat_printf(buffer, "BLE not ready");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-08 18:03:25 +00:00
|
|
|
bool furi_hal_bt_is_alive() {
|
2021-11-13 02:41:54 +00:00
|
|
|
return ble_glue_is_alive();
|
2021-09-16 16:12:07 +00:00
|
|
|
}
|
|
|
|
|
2021-08-08 18:03:25 +00:00
|
|
|
void furi_hal_bt_start_tone_tx(uint8_t channel, uint8_t power) {
|
2021-05-18 09:23:14 +00:00
|
|
|
aci_hal_set_tx_power_level(0, power);
|
2021-05-28 22:57:11 +00:00
|
|
|
aci_hal_tone_start(channel, 0);
|
2021-05-18 09:23:14 +00:00
|
|
|
}
|
|
|
|
|
2021-08-08 18:03:25 +00:00
|
|
|
void furi_hal_bt_stop_tone_tx() {
|
2021-05-18 09:23:14 +00:00
|
|
|
aci_hal_tone_stop();
|
|
|
|
}
|
|
|
|
|
2021-08-08 18:03:25 +00:00
|
|
|
void furi_hal_bt_start_packet_tx(uint8_t channel, uint8_t pattern, uint8_t datarate) {
|
2021-05-28 22:57:11 +00:00
|
|
|
hci_le_enhanced_transmitter_test(channel, 0x25, pattern, datarate);
|
2021-05-18 09:23:14 +00:00
|
|
|
}
|
|
|
|
|
2021-08-08 18:03:25 +00:00
|
|
|
void furi_hal_bt_start_packet_rx(uint8_t channel, uint8_t datarate) {
|
2021-05-28 22:57:11 +00:00
|
|
|
hci_le_enhanced_receiver_test(channel, datarate, 0);
|
|
|
|
}
|
|
|
|
|
2021-08-08 18:03:25 +00:00
|
|
|
uint16_t furi_hal_bt_stop_packet_test() {
|
2021-09-01 23:22:40 +00:00
|
|
|
uint16_t num_of_packets = 0;
|
2021-05-18 09:23:14 +00:00
|
|
|
hci_le_test_end(&num_of_packets);
|
2021-05-28 22:57:11 +00:00
|
|
|
return num_of_packets;
|
|
|
|
}
|
|
|
|
|
2021-08-08 18:03:25 +00:00
|
|
|
void furi_hal_bt_start_rx(uint8_t channel) {
|
2021-05-28 22:57:11 +00:00
|
|
|
aci_hal_rx_start(channel);
|
|
|
|
}
|
|
|
|
|
2021-08-08 18:03:25 +00:00
|
|
|
float furi_hal_bt_get_rssi() {
|
2021-05-28 22:57:11 +00:00
|
|
|
float val;
|
|
|
|
uint8_t rssi_raw[3];
|
2021-07-06 21:23:59 +00:00
|
|
|
|
2022-01-05 16:10:18 +00:00
|
|
|
if(aci_hal_read_raw_rssi(rssi_raw) != BLE_STATUS_SUCCESS) {
|
2021-07-06 21:23:59 +00:00
|
|
|
return 0.0f;
|
|
|
|
}
|
2021-05-28 22:57:11 +00:00
|
|
|
|
|
|
|
// Some ST magic with rssi
|
|
|
|
uint8_t agc = rssi_raw[2] & 0xFF;
|
2021-07-06 21:23:59 +00:00
|
|
|
int rssi = (((int)rssi_raw[1] << 8) & 0xFF00) + (rssi_raw[0] & 0xFF);
|
2021-05-28 22:57:11 +00:00
|
|
|
if(rssi == 0 || agc > 11) {
|
2021-06-02 14:09:02 +00:00
|
|
|
val = -127.0;
|
2021-05-28 22:57:11 +00:00
|
|
|
} else {
|
|
|
|
val = agc * 6.0f - 127.0f;
|
|
|
|
while(rssi > 30) {
|
|
|
|
val += 6.0;
|
2022-01-05 16:10:18 +00:00
|
|
|
rssi >>= 1;
|
2021-05-28 22:57:11 +00:00
|
|
|
}
|
|
|
|
val += (417 * rssi + 18080) >> 10;
|
|
|
|
}
|
|
|
|
return val;
|
2021-05-18 09:23:14 +00:00
|
|
|
}
|
|
|
|
|
2021-08-08 18:03:25 +00:00
|
|
|
uint32_t furi_hal_bt_get_transmitted_packets() {
|
2021-05-28 22:57:11 +00:00
|
|
|
uint32_t packets = 0;
|
|
|
|
aci_hal_le_tx_test_packet_number(&packets);
|
|
|
|
return packets;
|
2021-05-18 09:23:14 +00:00
|
|
|
}
|
|
|
|
|
2021-08-08 18:03:25 +00:00
|
|
|
void furi_hal_bt_stop_rx() {
|
2021-05-18 09:23:14 +00:00
|
|
|
aci_hal_rx_stop();
|
|
|
|
}
|
2022-01-02 22:36:42 +00:00
|
|
|
|
2022-04-27 15:53:48 +00:00
|
|
|
bool furi_hal_bt_ensure_c2_mode(BleGlueC2Mode mode) {
|
|
|
|
BleGlueCommandResult fw_start_res = ble_glue_force_c2_mode(mode);
|
|
|
|
if(fw_start_res == BleGlueCommandResultOK) {
|
|
|
|
return true;
|
|
|
|
} else if(fw_start_res == BleGlueCommandResultRestartPending) {
|
|
|
|
// Do nothing and wait for system reset
|
2022-07-20 10:56:33 +00:00
|
|
|
furi_delay_ms(C2_MODE_SWITCH_TIMEOUT);
|
2022-04-27 15:53:48 +00:00
|
|
|
furi_crash("Waiting for FUS->radio stack transition");
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
FURI_LOG_E(TAG, "Failed to switch C2 mode: %d", fw_start_res);
|
|
|
|
return false;
|
|
|
|
}
|