mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2025-07-09 02:25:24 +02:00
7 lines
281 B
C++
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;
|
|
} |