2021-10-25 14:37:14 +00:00
|
|
|
#pragma once
|
|
|
|
|
2022-01-05 16:10:18 +00:00
|
|
|
#include <furi_hal.h>
|
2021-10-25 14:37:14 +00:00
|
|
|
|
2021-11-24 13:59:45 +00:00
|
|
|
typedef void (*SubGhzFileEncoderWorkerCallbackEnd)(void* context);
|
|
|
|
|
2021-10-25 14:37:14 +00:00
|
|
|
typedef struct SubGhzFileEncoderWorker SubGhzFileEncoderWorker;
|
|
|
|
|
2022-03-16 09:18:48 +00:00
|
|
|
/**
|
|
|
|
* End callback SubGhzWorker.
|
2021-11-24 13:59:45 +00:00
|
|
|
* @param instance SubGhzFileEncoderWorker instance
|
|
|
|
* @param callback SubGhzFileEncoderWorkerCallbackEnd callback
|
|
|
|
*/
|
|
|
|
void subghz_file_encoder_worker_callback_end(
|
|
|
|
SubGhzFileEncoderWorker* instance,
|
|
|
|
SubGhzFileEncoderWorkerCallbackEnd callback_end,
|
|
|
|
void* context_end);
|
|
|
|
|
2022-03-16 09:18:48 +00:00
|
|
|
/**
|
|
|
|
* Allocate SubGhzFileEncoderWorker.
|
|
|
|
* @return SubGhzFileEncoderWorker* pointer to a SubGhzFileEncoderWorker instance
|
2021-10-25 14:37:14 +00:00
|
|
|
*/
|
|
|
|
SubGhzFileEncoderWorker* subghz_file_encoder_worker_alloc();
|
|
|
|
|
2022-03-16 09:18:48 +00:00
|
|
|
/**
|
|
|
|
* Free SubGhzFileEncoderWorker.
|
|
|
|
* @param instance Pointer to a SubGhzFileEncoderWorker instance
|
2021-10-25 14:37:14 +00:00
|
|
|
*/
|
|
|
|
void subghz_file_encoder_worker_free(SubGhzFileEncoderWorker* instance);
|
|
|
|
|
2022-03-16 09:18:48 +00:00
|
|
|
/**
|
|
|
|
* Getting the level and duration of the upload to be loaded into DMA.
|
|
|
|
* @param context Pointer to a SubGhzFileEncoderWorker instance
|
|
|
|
* @return LevelDuration
|
|
|
|
*/
|
2021-10-25 14:37:14 +00:00
|
|
|
LevelDuration subghz_file_encoder_worker_get_level_duration(void* context);
|
|
|
|
|
2022-03-16 09:18:48 +00:00
|
|
|
/**
|
|
|
|
* Start SubGhzFileEncoderWorker.
|
|
|
|
* @param instance Pointer to a SubGhzFileEncoderWorker instance
|
2021-10-25 14:37:14 +00:00
|
|
|
* @return bool - true if ok
|
|
|
|
*/
|
|
|
|
bool subghz_file_encoder_worker_start(SubGhzFileEncoderWorker* instance, const char* file_path);
|
|
|
|
|
2022-03-16 09:18:48 +00:00
|
|
|
/**
|
|
|
|
* Stop SubGhzFileEncoderWorker
|
|
|
|
* @param instance Pointer to a SubGhzFileEncoderWorker instance
|
2021-10-25 14:37:14 +00:00
|
|
|
*/
|
|
|
|
void subghz_file_encoder_worker_stop(SubGhzFileEncoderWorker* instance);
|
|
|
|
|
2022-03-16 09:18:48 +00:00
|
|
|
/**
|
|
|
|
* Check if worker is running
|
|
|
|
* @param instance Pointer to a SubGhzFileEncoderWorker instance
|
2021-10-25 14:37:14 +00:00
|
|
|
* @return bool - true if running
|
|
|
|
*/
|
|
|
|
bool subghz_file_encoder_worker_is_running(SubGhzFileEncoderWorker* instance);
|