Welcome to mirror list, hosted at ThFree Co, Russian Federation.

subghz_test_static.h « views « subghz « applications - github.com/ClusterM/flipperzero-firmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9020364310dab99ec7806b8d79ec734f48ba9d5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#pragma once

#include <gui/view.h>

typedef enum {
    SubGhzTestStaticEventOnlyRx,
} SubGhzTestStaticEvent;

typedef struct SubGhzTestStatic SubGhzTestStatic;

typedef void (*SubGhzTestStaticCallback)(SubGhzTestStaticEvent event, void* context);

void subghz_test_static_set_callback(
    SubGhzTestStatic* subghz_test_static,
    SubGhzTestStaticCallback callback,
    void* context);

SubGhzTestStatic* subghz_test_static_alloc();

void subghz_test_static_free(SubGhzTestStatic* subghz_static);

View* subghz_test_static_get_view(SubGhzTestStatic* subghz_static);