mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2024-12-26 14:51:52 +03:00
585b7f963d
merge ofw commit
23 lines
582 B
C
23 lines
582 B
C
#pragma once
|
|
|
|
#include <gui/view.h>
|
|
|
|
typedef enum {
|
|
SubGhzTestPacketEventOnlyRx,
|
|
} SubGhzTestPacketEvent;
|
|
|
|
typedef struct SubGhzTestPacket SubGhzTestPacket;
|
|
|
|
typedef void (*SubGhzTestPacketCallback)(SubGhzTestPacketEvent event, void* context);
|
|
|
|
void subghz_test_packet_set_callback(
|
|
SubGhzTestPacket* subghz_test_packet,
|
|
SubGhzTestPacketCallback callback,
|
|
void* context);
|
|
|
|
SubGhzTestPacket* subghz_test_packet_alloc(void);
|
|
|
|
void subghz_test_packet_free(SubGhzTestPacket* subghz_test_packet);
|
|
|
|
View* subghz_test_packet_get_view(SubGhzTestPacket* subghz_test_packet);
|