mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-12-19 09:13:11 +00:00
cef59887ed
* [FL-3401] SubGhz: add "SubGhz test" external application * SubGhz: delete test test functionality from SubGhz app * [FL-3402] SubGhz: move func protocol creation API Co-authored-by: あく <alleteam@gmail.com>
22 lines
596 B
C
22 lines
596 B
C
#pragma once
|
|
|
|
#include <gui/view.h>
|
|
|
|
typedef enum {
|
|
SubGhzTestCarrierEventOnlyRx,
|
|
} SubGhzTestCarrierEvent;
|
|
|
|
typedef struct SubGhzTestCarrier SubGhzTestCarrier;
|
|
|
|
typedef void (*SubGhzTestCarrierCallback)(SubGhzTestCarrierEvent event, void* context);
|
|
|
|
void subghz_test_carrier_set_callback(
|
|
SubGhzTestCarrier* subghz_test_carrier,
|
|
SubGhzTestCarrierCallback callback,
|
|
void* context);
|
|
|
|
SubGhzTestCarrier* subghz_test_carrier_alloc();
|
|
|
|
void subghz_test_carrier_free(SubGhzTestCarrier* subghz_test_carrier);
|
|
|
|
View* subghz_test_carrier_get_view(SubGhzTestCarrier* subghz_test_carrier);
|