b9a766d909
* Added support for running applications from SD card (FAPs - Flipper Application Packages) * Added plugin_dist target for fbt to build FAPs * All apps of type FlipperAppType.EXTERNAL and FlipperAppType.PLUGIN are built as FAPs by default * Updated VSCode configuration for new fbt features - re-deploy stock configuration to use them * Added debugging support for FAPs with fbt debug & VSCode * Added public firmware API with automated versioning Co-authored-by: hedger <hedger@users.noreply.github.com> Co-authored-by: SG <who.just.the.doctor@gmail.com> Co-authored-by: あく <alleteam@gmail.com>
90 lines
2.4 KiB
C
90 lines
2.4 KiB
C
#pragma once
|
||
|
||
#include <furi_hal.h>
|
||
|
||
#ifdef __cplusplus
|
||
extern "C" {
|
||
#endif
|
||
|
||
typedef void (*SubGhzTxRxWorkerCallbackHaveRead)(void* context);
|
||
|
||
typedef struct SubGhzTxRxWorker SubGhzTxRxWorker;
|
||
|
||
typedef enum {
|
||
SubGhzTxRxWorkerStatusIDLE,
|
||
SubGhzTxRxWorkerStatusTx,
|
||
SubGhzTxRxWorkerStatusRx,
|
||
} SubGhzTxRxWorkerStatus;
|
||
|
||
/**
|
||
* SubGhzTxRxWorker, add data to transfer
|
||
* @param instance Pointer to a SubGhzTxRxWorker instance
|
||
* @param data *data
|
||
* @param size data size
|
||
* @return bool true if ok
|
||
*/
|
||
bool subghz_tx_rx_worker_write(SubGhzTxRxWorker* instance, uint8_t* data, size_t size);
|
||
|
||
/**
|
||
* SubGhzTxRxWorker, get available data
|
||
* @param instance Pointer to a SubGhzTxRxWorker instance
|
||
* @return size_t data size
|
||
*/
|
||
size_t subghz_tx_rx_worker_available(SubGhzTxRxWorker* instance);
|
||
|
||
/**
|
||
* SubGhzTxRxWorker, read data
|
||
* @param instance Pointer to a SubGhzTxRxWorker instance
|
||
* @param data *data
|
||
* @param size max data size, which can be read
|
||
* @return size_t data size, how much is actually read
|
||
*/
|
||
size_t subghz_tx_rx_worker_read(SubGhzTxRxWorker* instance, uint8_t* data, size_t size);
|
||
|
||
/**
|
||
* Сallback SubGhzTxRxWorker when there is data to read in an empty buffer
|
||
* @param instance Pointer to a SubGhzTxRxWorker instance
|
||
* @param callback SubGhzTxRxWorkerCallbackHaveRead callback
|
||
* @param context
|
||
*/
|
||
void subghz_tx_rx_worker_set_callback_have_read(
|
||
SubGhzTxRxWorker* instance,
|
||
SubGhzTxRxWorkerCallbackHaveRead callback,
|
||
void* context);
|
||
|
||
/**
|
||
* Allocate SubGhzTxRxWorker
|
||
* @return SubGhzTxRxWorker* Pointer to a SubGhzTxRxWorker instance
|
||
*/
|
||
SubGhzTxRxWorker* subghz_tx_rx_worker_alloc();
|
||
|
||
/**
|
||
* Free SubGhzTxRxWorker
|
||
* @param instance Pointer to a SubGhzTxRxWorker instance
|
||
*/
|
||
void subghz_tx_rx_worker_free(SubGhzTxRxWorker* instance);
|
||
|
||
/**
|
||
* Start SubGhzTxRxWorker
|
||
* @param instance Pointer to a SubGhzTxRxWorker instance
|
||
* @return bool - true if ok
|
||
*/
|
||
bool subghz_tx_rx_worker_start(SubGhzTxRxWorker* instance, uint32_t frequency);
|
||
|
||
/**
|
||
* Stop SubGhzTxRxWorker
|
||
* @param instance Pointer to a SubGhzTxRxWorker instance
|
||
*/
|
||
void subghz_tx_rx_worker_stop(SubGhzTxRxWorker* instance);
|
||
|
||
/**
|
||
* Check if worker is running
|
||
* @param instance Pointer to a SubGhzTxRxWorker instance
|
||
* @return bool - true if running
|
||
*/
|
||
bool subghz_tx_rx_worker_is_running(SubGhzTxRxWorker* instance);
|
||
|
||
#ifdef __cplusplus
|
||
}
|
||
#endif
|