2021-03-22 18:53:09 +01:00
|
|
|
#include "global.h"
|
|
|
|
|
|
|
|
|
|
std::shared_ptr<std::vector<std::shared_ptr<ProcessingModule>>> uiCallList;
|
|
|
|
|
std::shared_ptr<std::mutex> uiCallListMutex;
|
|
|
|
|
|
2021-05-22 16:36:09 +02:00
|
|
|
ctpl::thread_pool processThreadPool(8);
|
2021-03-22 18:53:09 +01:00
|
|
|
|
|
|
|
|
std::string downlink_pipeline = "";
|
|
|
|
|
std::string input_level = "";
|
|
|
|
|
std::string input_file = "";
|
|
|
|
|
std::string output_level = "products";
|
|
|
|
|
std::string output_file = "";
|
|
|
|
|
std::map<std::string, std::string> parameters;
|
|
|
|
|
|
|
|
|
|
//bool processing = false;
|
|
|
|
|
|
2021-04-02 14:48:28 +02:00
|
|
|
int category_id = 0;
|
2021-03-22 18:53:09 +01:00
|
|
|
int pipeline_id = -1;
|
2021-04-02 14:48:28 +02:00
|
|
|
int input_level_id = 0;
|
2021-03-22 18:53:09 +01:00
|
|
|
|
|
|
|
|
int baseband_type_option = 2;
|
|
|
|
|
|
|
|
|
|
char samplerate[100];
|
|
|
|
|
int frequency_id = 0;
|
|
|
|
|
float frequency;
|
|
|
|
|
std::string baseband_format;
|
|
|
|
|
bool dc_block;
|
2021-04-05 17:08:29 +02:00
|
|
|
bool iq_swap;
|
2021-03-22 18:53:09 +01:00
|
|
|
|
|
|
|
|
bool livedemod = false;
|
|
|
|
|
|
|
|
|
|
char error_message[100];
|