mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
21 lines
No EOL
457 B
C++
21 lines
No EOL
457 B
C++
#include "global.h"
|
|
|
|
std::shared_ptr<std::vector<std::shared_ptr<ProcessingModule>>> uiCallList;
|
|
std::shared_ptr<std::mutex> uiCallListMutex;
|
|
|
|
ctpl::thread_pool processThreadPool(8);
|
|
|
|
#ifdef BUILD_LIVE
|
|
std::vector<std::tuple<std::string, sdr_device_type, uint64_t>> radio_devices;
|
|
|
|
bool first_init = true;
|
|
void findRadioDevices()
|
|
{
|
|
if (first_init)
|
|
{
|
|
initSDRs();
|
|
first_init = false;
|
|
}
|
|
radio_devices = getAllDevices();
|
|
}
|
|
#endif |