satdump/src-interface/global.h

15 lines
404 B
C
Raw Normal View History

2021-05-14 19:38:02 +02:00
#pragma once
2021-10-09 14:57:07 +02:00
#include "libs/ctpl/ctpl_stl.h"
2021-05-14 19:38:02 +02:00
#include "module.h"
extern std::shared_ptr<std::vector<std::shared_ptr<ProcessingModule>>> uiCallList;
extern std::shared_ptr<std::mutex> uiCallListMutex;
extern ctpl::thread_pool processThreadPool;
2021-08-15 16:47:44 +02:00
#ifdef BUILD_LIVE
#include "sdr/sdr.h"
extern std::vector<std::tuple<std::string, sdr_device_type, uint64_t>> radio_devices;
void findRadioDevices();
#endif