2020-12-10 14:25:20 +00:00
|
|
|
#include <api-hal-bt.h>
|
|
|
|
#include <app_entry.h>
|
|
|
|
#include <ble.h>
|
2020-12-18 20:15:29 +00:00
|
|
|
#include <stm32wbxx.h>
|
|
|
|
#include <shci.h>
|
|
|
|
#include <cmsis_os2.h>
|
2021-03-11 09:31:07 +00:00
|
|
|
#include <app_ble.h>
|
2020-12-10 14:25:20 +00:00
|
|
|
|
|
|
|
void api_hal_bt_init() {
|
|
|
|
// Explicitly tell that we are in charge of CLK48 domain
|
|
|
|
HAL_HSEM_FastTake(CFG_HW_CLK48_CONFIG_SEMID);
|
|
|
|
// Start Core2, init HCI and start GAP/GATT
|
|
|
|
APPE_Init();
|
|
|
|
}
|
|
|
|
|
2021-03-11 09:31:07 +00:00
|
|
|
bool api_hal_bt_start_app() {
|
|
|
|
return APP_BLE_Start();
|
|
|
|
}
|
|
|
|
|
2020-12-10 14:25:20 +00:00
|
|
|
void api_hal_bt_dump_state(string_t buffer) {
|
|
|
|
BleGlueStatus status = APPE_Status();
|
|
|
|
if (status == BleGlueStatusStarted) {
|
|
|
|
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(
|
|
|
|
&HCI_Version, &HCI_Revision, &LMP_PAL_Version, &Manufacturer_Name, &LMP_PAL_Subversion
|
|
|
|
);
|
|
|
|
|
|
|
|
string_cat_printf(buffer,
|
|
|
|
"Ret: %d, HCI_Version: %d, HCI_Revision: %d, LMP_PAL_Version: %d, Manufacturer_Name: %d, LMP_PAL_Subversion: %d",
|
|
|
|
ret, HCI_Version, HCI_Revision, LMP_PAL_Version, Manufacturer_Name, LMP_PAL_Subversion
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
string_cat_printf(buffer, "BLE not ready");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool api_hal_bt_is_alive() {
|
|
|
|
return APPE_Status() == BleGlueStatusStarted;
|
2020-12-18 20:15:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool api_hal_bt_wait_transition() {
|
FL-53: new NFC worker, A/B/F/V poll and display. (#283)
* GUI: view. Flooper-blooper fix compilation error.
* GUI: view and viewdispatcher bones
* GUI: view implementation, view models, view dispatcher
* GUI: view navigation, model refinement. Power: use view, view dispatcher.
* HAL Flash: proper page write. Dolphin: views. Power: views
* Dolphin: transition idle scree to Views
* Dolphin: input events on stats view. Format sources.
* HAL: flash erase. Dolphin: permanent state storage.
* Dolphin: first start welcome. HAL: flash operation status, errata 2.2.9 crutch.
* NFC: rewrite worker
* NFC: add support for B,F,V.
* NFC: replace rfal irq hanlder with realtime thread, more details about cards.
* Bootloader: LSE and RTS shenanigans, LED control, morse code for LSE failure error.
* F4: stop in Error_Handler
* BLE: handle working FUS, but empty radio stack.
* HAL: alive FUS is now sufficient for flash controller access
* Dolphin: update model after state load
* NFC: detect navigation
* RFAL: use osPriorityISR for isr thread
* NFC: emulation
* Bootloader: rollback incorrectly merged rename
* Dolphin: rollback incorrectly merged changes
* RFAL: remove volatile from thread attr
* RFAL: do not call platform ErrorHandler, error codes is enough
* NFC: improved error handling
* Format sources
* NFC: reset detect view model on start
* Format sources
* update codeowners
* NFC: hide last info if no card detected
2021-01-11 12:42:25 +00:00
|
|
|
uint8_t counter = 0;
|
|
|
|
while (APPE_Status() == BleGlueStatusStartup) {
|
|
|
|
osDelay(10);
|
|
|
|
counter++;
|
|
|
|
if (counter > 1000) {
|
|
|
|
return false;
|
|
|
|
}
|
2020-12-18 20:15:29 +00:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
FL-53: new NFC worker, A/B/F/V poll and display. (#283)
* GUI: view. Flooper-blooper fix compilation error.
* GUI: view and viewdispatcher bones
* GUI: view implementation, view models, view dispatcher
* GUI: view navigation, model refinement. Power: use view, view dispatcher.
* HAL Flash: proper page write. Dolphin: views. Power: views
* Dolphin: transition idle scree to Views
* Dolphin: input events on stats view. Format sources.
* HAL: flash erase. Dolphin: permanent state storage.
* Dolphin: first start welcome. HAL: flash operation status, errata 2.2.9 crutch.
* NFC: rewrite worker
* NFC: add support for B,F,V.
* NFC: replace rfal irq hanlder with realtime thread, more details about cards.
* Bootloader: LSE and RTS shenanigans, LED control, morse code for LSE failure error.
* F4: stop in Error_Handler
* BLE: handle working FUS, but empty radio stack.
* HAL: alive FUS is now sufficient for flash controller access
* Dolphin: update model after state load
* NFC: detect navigation
* RFAL: use osPriorityISR for isr thread
* NFC: emulation
* Bootloader: rollback incorrectly merged rename
* Dolphin: rollback incorrectly merged changes
* RFAL: remove volatile from thread attr
* RFAL: do not call platform ErrorHandler, error codes is enough
* NFC: improved error handling
* Format sources
* NFC: reset detect view model on start
* Format sources
* update codeowners
* NFC: hide last info if no card detected
2021-01-11 12:42:25 +00:00
|
|
|
bool api_hal_bt_lock_flash() {
|
2020-12-18 20:15:29 +00:00
|
|
|
if (!api_hal_bt_wait_transition()) {
|
FL-53: new NFC worker, A/B/F/V poll and display. (#283)
* GUI: view. Flooper-blooper fix compilation error.
* GUI: view and viewdispatcher bones
* GUI: view implementation, view models, view dispatcher
* GUI: view navigation, model refinement. Power: use view, view dispatcher.
* HAL Flash: proper page write. Dolphin: views. Power: views
* Dolphin: transition idle scree to Views
* Dolphin: input events on stats view. Format sources.
* HAL: flash erase. Dolphin: permanent state storage.
* Dolphin: first start welcome. HAL: flash operation status, errata 2.2.9 crutch.
* NFC: rewrite worker
* NFC: add support for B,F,V.
* NFC: replace rfal irq hanlder with realtime thread, more details about cards.
* Bootloader: LSE and RTS shenanigans, LED control, morse code for LSE failure error.
* F4: stop in Error_Handler
* BLE: handle working FUS, but empty radio stack.
* HAL: alive FUS is now sufficient for flash controller access
* Dolphin: update model after state load
* NFC: detect navigation
* RFAL: use osPriorityISR for isr thread
* NFC: emulation
* Bootloader: rollback incorrectly merged rename
* Dolphin: rollback incorrectly merged changes
* RFAL: remove volatile from thread attr
* RFAL: do not call platform ErrorHandler, error codes is enough
* NFC: improved error handling
* Format sources
* NFC: reset detect view model on start
* Format sources
* update codeowners
* NFC: hide last info if no card detected
2021-01-11 12:42:25 +00:00
|
|
|
return false;
|
2020-12-18 20:15:29 +00:00
|
|
|
}
|
FL-53: new NFC worker, A/B/F/V poll and display. (#283)
* GUI: view. Flooper-blooper fix compilation error.
* GUI: view and viewdispatcher bones
* GUI: view implementation, view models, view dispatcher
* GUI: view navigation, model refinement. Power: use view, view dispatcher.
* HAL Flash: proper page write. Dolphin: views. Power: views
* Dolphin: transition idle scree to Views
* Dolphin: input events on stats view. Format sources.
* HAL: flash erase. Dolphin: permanent state storage.
* Dolphin: first start welcome. HAL: flash operation status, errata 2.2.9 crutch.
* NFC: rewrite worker
* NFC: add support for B,F,V.
* NFC: replace rfal irq hanlder with realtime thread, more details about cards.
* Bootloader: LSE and RTS shenanigans, LED control, morse code for LSE failure error.
* F4: stop in Error_Handler
* BLE: handle working FUS, but empty radio stack.
* HAL: alive FUS is now sufficient for flash controller access
* Dolphin: update model after state load
* NFC: detect navigation
* RFAL: use osPriorityISR for isr thread
* NFC: emulation
* Bootloader: rollback incorrectly merged rename
* Dolphin: rollback incorrectly merged changes
* RFAL: remove volatile from thread attr
* RFAL: do not call platform ErrorHandler, error codes is enough
* NFC: improved error handling
* Format sources
* NFC: reset detect view model on start
* Format sources
* update codeowners
* NFC: hide last info if no card detected
2021-01-11 12:42:25 +00:00
|
|
|
if (APPE_Status() == BleGlueStatusUninitialized) {
|
|
|
|
HAL_FLASH_Unlock();
|
|
|
|
} else {
|
|
|
|
while (HAL_HSEM_FastTake(CFG_HW_FLASH_SEMID) != HAL_OK) {
|
|
|
|
osDelay(1);
|
|
|
|
}
|
|
|
|
SHCI_C2_FLASH_EraseActivity(ERASE_ACTIVITY_ON);
|
|
|
|
HAL_FLASH_Unlock();
|
|
|
|
while(LL_FLASH_IsOperationSuspended()) {};
|
2020-12-18 20:15:29 +00:00
|
|
|
}
|
FL-53: new NFC worker, A/B/F/V poll and display. (#283)
* GUI: view. Flooper-blooper fix compilation error.
* GUI: view and viewdispatcher bones
* GUI: view implementation, view models, view dispatcher
* GUI: view navigation, model refinement. Power: use view, view dispatcher.
* HAL Flash: proper page write. Dolphin: views. Power: views
* Dolphin: transition idle scree to Views
* Dolphin: input events on stats view. Format sources.
* HAL: flash erase. Dolphin: permanent state storage.
* Dolphin: first start welcome. HAL: flash operation status, errata 2.2.9 crutch.
* NFC: rewrite worker
* NFC: add support for B,F,V.
* NFC: replace rfal irq hanlder with realtime thread, more details about cards.
* Bootloader: LSE and RTS shenanigans, LED control, morse code for LSE failure error.
* F4: stop in Error_Handler
* BLE: handle working FUS, but empty radio stack.
* HAL: alive FUS is now sufficient for flash controller access
* Dolphin: update model after state load
* NFC: detect navigation
* RFAL: use osPriorityISR for isr thread
* NFC: emulation
* Bootloader: rollback incorrectly merged rename
* Dolphin: rollback incorrectly merged changes
* RFAL: remove volatile from thread attr
* RFAL: do not call platform ErrorHandler, error codes is enough
* NFC: improved error handling
* Format sources
* NFC: reset detect view model on start
* Format sources
* update codeowners
* NFC: hide last info if no card detected
2021-01-11 12:42:25 +00:00
|
|
|
return true;
|
2020-12-18 20:15:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void api_hal_bt_unlock_flash() {
|
FL-53: new NFC worker, A/B/F/V poll and display. (#283)
* GUI: view. Flooper-blooper fix compilation error.
* GUI: view and viewdispatcher bones
* GUI: view implementation, view models, view dispatcher
* GUI: view navigation, model refinement. Power: use view, view dispatcher.
* HAL Flash: proper page write. Dolphin: views. Power: views
* Dolphin: transition idle scree to Views
* Dolphin: input events on stats view. Format sources.
* HAL: flash erase. Dolphin: permanent state storage.
* Dolphin: first start welcome. HAL: flash operation status, errata 2.2.9 crutch.
* NFC: rewrite worker
* NFC: add support for B,F,V.
* NFC: replace rfal irq hanlder with realtime thread, more details about cards.
* Bootloader: LSE and RTS shenanigans, LED control, morse code for LSE failure error.
* F4: stop in Error_Handler
* BLE: handle working FUS, but empty radio stack.
* HAL: alive FUS is now sufficient for flash controller access
* Dolphin: update model after state load
* NFC: detect navigation
* RFAL: use osPriorityISR for isr thread
* NFC: emulation
* Bootloader: rollback incorrectly merged rename
* Dolphin: rollback incorrectly merged changes
* RFAL: remove volatile from thread attr
* RFAL: do not call platform ErrorHandler, error codes is enough
* NFC: improved error handling
* Format sources
* NFC: reset detect view model on start
* Format sources
* update codeowners
* NFC: hide last info if no card detected
2021-01-11 12:42:25 +00:00
|
|
|
if (APPE_Status() == BleGlueStatusUninitialized) {
|
|
|
|
HAL_FLASH_Lock();
|
|
|
|
} else {
|
|
|
|
SHCI_C2_FLASH_EraseActivity(ERASE_ACTIVITY_OFF);
|
2020-12-18 20:15:29 +00:00
|
|
|
HAL_FLASH_Lock();
|
FL-53: new NFC worker, A/B/F/V poll and display. (#283)
* GUI: view. Flooper-blooper fix compilation error.
* GUI: view and viewdispatcher bones
* GUI: view implementation, view models, view dispatcher
* GUI: view navigation, model refinement. Power: use view, view dispatcher.
* HAL Flash: proper page write. Dolphin: views. Power: views
* Dolphin: transition idle scree to Views
* Dolphin: input events on stats view. Format sources.
* HAL: flash erase. Dolphin: permanent state storage.
* Dolphin: first start welcome. HAL: flash operation status, errata 2.2.9 crutch.
* NFC: rewrite worker
* NFC: add support for B,F,V.
* NFC: replace rfal irq hanlder with realtime thread, more details about cards.
* Bootloader: LSE and RTS shenanigans, LED control, morse code for LSE failure error.
* F4: stop in Error_Handler
* BLE: handle working FUS, but empty radio stack.
* HAL: alive FUS is now sufficient for flash controller access
* Dolphin: update model after state load
* NFC: detect navigation
* RFAL: use osPriorityISR for isr thread
* NFC: emulation
* Bootloader: rollback incorrectly merged rename
* Dolphin: rollback incorrectly merged changes
* RFAL: remove volatile from thread attr
* RFAL: do not call platform ErrorHandler, error codes is enough
* NFC: improved error handling
* Format sources
* NFC: reset detect view model on start
* Format sources
* update codeowners
* NFC: hide last info if no card detected
2021-01-11 12:42:25 +00:00
|
|
|
HAL_HSEM_Release(CFG_HW_FLASH_SEMID, HSEM_CPU1_COREID);
|
2020-12-18 20:15:29 +00:00
|
|
|
}
|
|
|
|
}
|
2021-03-11 09:31:07 +00:00
|
|
|
|
|
|
|
void api_hal_bt_start_tone_tx(uint8_t tx_channel, uint8_t power) {
|
|
|
|
aci_hal_set_tx_power_level(0, power);
|
|
|
|
aci_hal_tone_start(tx_channel, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void api_hal_bt_stop_tone_tx() {
|
|
|
|
aci_hal_tone_stop();
|
|
|
|
}
|
|
|
|
|
|
|
|
void api_hal_bt_start_packet_tx(uint8_t frequency, uint8_t datarate) {
|
|
|
|
hci_le_enhanced_transmitter_test(frequency, 0x25, 2, datarate);
|
|
|
|
}
|
|
|
|
|
|
|
|
void api_hal_bt_stop_packet_tx() {
|
|
|
|
uint16_t num_of_packets;
|
|
|
|
hci_le_test_end(&num_of_packets);
|
|
|
|
}
|
|
|
|
|
|
|
|
void api_hal_bt_start_rx(uint8_t frequency) {
|
|
|
|
aci_hal_rx_start(frequency);
|
|
|
|
}
|
|
|
|
|
|
|
|
void api_hal_bt_stop_rx() {
|
|
|
|
aci_hal_rx_stop();
|
|
|
|
}
|