16 lines
414 B
C++
16 lines
414 B
C++
#pragma once
|
|
#include "../../dll_source/main.h"
|
|
#include "Psc_Cpp_Core/Base/JSON.h"
|
|
#include "Psc_Cpp_Core/spdlog/export.h"
|
|
class Base_DSP {
|
|
public:
|
|
std::string library_path;
|
|
std::uint64_t center_freq{};
|
|
std::uint64_t band_width{};
|
|
std::uint64_t sample_rate{};
|
|
Psc::Copyable_Atomic<std::uint64_t> fft_point_number = 1024;
|
|
int fft_period_ms;
|
|
UHD_FFTWin fft_win_type;
|
|
PSC_USE_JSON
|
|
};
|