mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2024-12-25 14:22:27 +03: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>
23 lines
600 B
C
23 lines
600 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);
|
|
|
|
void subghz_test_carrier_free(SubGhzTestCarrier* subghz_test_carrier);
|
|
|
|
View* subghz_test_carrier_get_view(SubGhzTestCarrier* subghz_test_carrier);
|