mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-10 15:04:19 +00:00
acc39a4bc0
* Api Symbols: replace asserts with checks * Api Symbols: replace asserts with checks part 2 * Update no args function signatures with void, to help compiler to track incorrect usage * More unavoidable void * Update PVS config and code to make it happy * Format sources * nfc: fix checks * dead code cleanup & include fixes Co-authored-by: gornekich <n.gorbadey@gmail.com> Co-authored-by: hedger <hedger@users.noreply.github.com> Co-authored-by: hedger <hedger@nanode.su>
80 lines
2.1 KiB
C
80 lines
2.1 KiB
C
#pragma once
|
|
|
|
#include <furi_hal.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct SubGhzWorker SubGhzWorker;
|
|
|
|
typedef void (*SubGhzWorkerOverrunCallback)(void* context);
|
|
|
|
typedef void (*SubGhzWorkerPairCallback)(void* context, bool level, uint32_t duration);
|
|
|
|
void subghz_worker_rx_callback(bool level, uint32_t duration, void* context);
|
|
|
|
/**
|
|
* Allocate SubGhzWorker.
|
|
* @return SubGhzWorker* Pointer to a SubGhzWorker instance
|
|
*/
|
|
SubGhzWorker* subghz_worker_alloc(void);
|
|
|
|
/**
|
|
* Free SubGhzWorker.
|
|
* @param instance Pointer to a SubGhzWorker instance
|
|
*/
|
|
void subghz_worker_free(SubGhzWorker* instance);
|
|
|
|
/**
|
|
* Overrun callback SubGhzWorker.
|
|
* @param instance Pointer to a SubGhzWorker instance
|
|
* @param callback SubGhzWorkerOverrunCallback callback
|
|
*/
|
|
void subghz_worker_set_overrun_callback(
|
|
SubGhzWorker* instance,
|
|
SubGhzWorkerOverrunCallback callback);
|
|
|
|
/**
|
|
* Pair callback SubGhzWorker.
|
|
* @param instance Pointer to a SubGhzWorker instance
|
|
* @param callback SubGhzWorkerOverrunCallback callback
|
|
*/
|
|
void subghz_worker_set_pair_callback(SubGhzWorker* instance, SubGhzWorkerPairCallback callback);
|
|
|
|
/**
|
|
* Context callback SubGhzWorker.
|
|
* @param instance Pointer to a SubGhzWorker instance
|
|
* @param context
|
|
*/
|
|
void subghz_worker_set_context(SubGhzWorker* instance, void* context);
|
|
|
|
/**
|
|
* Start SubGhzWorker.
|
|
* @param instance Pointer to a SubGhzWorker instance
|
|
*/
|
|
void subghz_worker_start(SubGhzWorker* instance);
|
|
|
|
/** Stop SubGhzWorker
|
|
* @param instance Pointer to a SubGhzWorker instance
|
|
*/
|
|
void subghz_worker_stop(SubGhzWorker* instance);
|
|
|
|
/**
|
|
* Check if worker is running.
|
|
* @param instance Pointer to a SubGhzWorker instance
|
|
* @return bool - true if running
|
|
*/
|
|
bool subghz_worker_is_running(SubGhzWorker* instance);
|
|
|
|
/**
|
|
* Short duration filter setting.
|
|
* glues short durations into 1. The default setting is 30 us, if set to 0 the filter will be disabled
|
|
* @param instance Pointer to a SubGhzWorker instance
|
|
* @param timeout time in us
|
|
*/
|
|
void subghz_worker_set_filter(SubGhzWorker* instance, uint16_t timeout);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|