mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
42 lines
1.1 KiB
C++
42 lines
1.1 KiB
C++
#pragma once
|
|
|
|
#include "core/module.h"
|
|
#include <complex>
|
|
#include <thread>
|
|
#include <fstream>
|
|
#include "common/simple_deframer.h"
|
|
#include "common/widgets/constellation.h"
|
|
|
|
namespace ax25
|
|
{
|
|
class AX25DecoderModule : public ProcessingModule
|
|
{
|
|
protected:
|
|
int8_t *input_buffer;
|
|
|
|
std::ifstream data_in;
|
|
std::ofstream data_out;
|
|
|
|
std::atomic<uint64_t> filesize;
|
|
std::atomic<uint64_t> progress;
|
|
|
|
bool d_nrzi;
|
|
bool d_g3ruh;
|
|
|
|
int frm_cnt = 0;
|
|
|
|
public:
|
|
AX25DecoderModule(std::string input_file, std::string output_file_hint, nlohmann::json parameters);
|
|
~AX25DecoderModule();
|
|
void process();
|
|
void drawUI(bool window);
|
|
std::vector<ModuleDataType> getInputTypes();
|
|
std::vector<ModuleDataType> getOutputTypes();
|
|
|
|
public:
|
|
static std::string getID();
|
|
virtual std::string getIDM() { return getID(); };
|
|
static std::vector<std::string> getParameters();
|
|
static std::shared_ptr<ProcessingModule> getInstance(std::string input_file, std::string output_file_hint, nlohmann::json parameters);
|
|
};
|
|
} // namespace noaa
|