2020-12-10 14:25:20 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <m-string.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Initialize */
|
|
|
|
void api_hal_bt_init();
|
|
|
|
|
2021-03-11 09:31:07 +00:00
|
|
|
/* Start BLE app */
|
|
|
|
bool api_hal_bt_start_app();
|
|
|
|
|
2020-12-10 14:25:20 +00:00
|
|
|
/* Get BT/BLE system component state */
|
|
|
|
void api_hal_bt_dump_state(string_t buffer);
|
|
|
|
|
|
|
|
/* Get BT/BLE system component state */
|
|
|
|
bool api_hal_bt_is_alive();
|
|
|
|
|
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
|
|
|
/* Lock shared access to flash controller
|
|
|
|
* @return true if lock was successful, false if not
|
|
|
|
*/
|
|
|
|
bool api_hal_bt_lock_flash();
|
2020-12-18 20:15:29 +00:00
|
|
|
|
|
|
|
/* Unlock shared access to flash controller */
|
|
|
|
void api_hal_bt_unlock_flash();
|
|
|
|
|
2021-03-11 09:31:07 +00:00
|
|
|
/* Start ble tone tx at given channel and power */
|
|
|
|
void api_hal_bt_start_tone_tx(uint8_t tx_channel, uint8_t power);
|
|
|
|
|
|
|
|
/* Stop ble tone tx */
|
|
|
|
void api_hal_bt_stop_tone_tx();
|
|
|
|
|
|
|
|
/* Start sending ble packets at a given frequency and datarate */
|
|
|
|
void api_hal_bt_start_packet_tx(uint8_t frequency, uint8_t datarate);
|
|
|
|
|
|
|
|
/* Stop sending ble packets */
|
|
|
|
void api_hal_bt_stop_packet_tx();
|
|
|
|
|
|
|
|
/* Set up the RF to listen to a given RF channel */
|
|
|
|
void api_hal_bt_start_rx(uint8_t frequency);
|
|
|
|
|
|
|
|
/* Stop RF listenning */
|
|
|
|
void api_hal_bt_stop_rx();
|
|
|
|
|
2020-12-10 14:25:20 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|