Files
SDRPlusPlus/core/src/dsp/mod/psk.h
2023-03-09 08:56:48 +01:00

7 lines
281 B
C++

#pragma once
#include "../multirate/rrc_interpolator.h"
namespace dsp::mod {
// TODO: Check if resample before RRC is better than using the RRC taps as a filter (bandwidth probably not correct for alias-free resampling)
typedef multirate::RRCInterpolator<complex_t> PSK;
}