mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-12-21 02:03:18 +00:00
34 lines
No EOL
811 B
C
34 lines
No EOL
811 B
C
|
|
#pragma once
|
|
#include "subghz_types.h"
|
|
#include "subghz_txrx_callbacks.h"
|
|
#include <lib/subghz/subghz_worker.h>
|
|
#include <lib/subghz/subghz_setting.h>
|
|
#include <lib/subghz/receiver.h>
|
|
#include <lib/subghz/transmitter.h>
|
|
|
|
struct SubGhzTxRx {
|
|
SubGhzWorker* worker;
|
|
|
|
SubGhzEnvironment* environment;
|
|
SubGhzReceiver* receiver;
|
|
SubGhzTransmitter* transmitter;
|
|
SubGhzProtocolDecoderBase* decoder_result;
|
|
FlipperFormat* fff_data;
|
|
|
|
SubGhzRadioPreset* preset;
|
|
SubGhzSetting* setting;
|
|
|
|
uint8_t hopper_timeout;
|
|
uint8_t hopper_idx_frequency;
|
|
bool load_database;
|
|
SubGhzHopperState hopper_state;
|
|
|
|
SubGhzTxRxState txrx_state;
|
|
SubGhzSpeakerState speaker_state;
|
|
|
|
SubGhzTxRxNeedSaveCallback need_save_callback;
|
|
void* need_save_context;
|
|
|
|
bool debug_pin_state;
|
|
}; |