You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried to use these functions to build a QPSK modulation and demodulation case, but the demodulation results and the input data are very different, the main program is as follows, I think it is the function parameter setting problem, hope the author can point out the error or provide a correct QPSK modulation and demodulation case, thank you very much!
I tried to use these functions to build a QPSK modulation and demodulation case, but the demodulation results and the input data are very different, the main program is as follows, I think it is the function parameter setting problem, hope the author can point out the error or provide a correct QPSK modulation and demodulation case, thank you very much!
`#include <stdlib.h>
#include <stdint.h>
#include <math.h>
#include "butterworth_filter.h"
#include "rrc_filter.h"
#include "qpsk_modulator.h"
#include "bytes_symbols_converter.h"
#include "file_reader.h"
#include "qpsk_demodulator.h"
#include "pll.h"
#include "butterworth_filter.h"
int main() {
//初始化QPSK调制器
qpsk_modulator_s* qpsk_modulator = qpsk_modulator_init(10000,5000,2000,2,100.0);
}`
The text was updated successfully, but these errors were encountered: