mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
21 lines
No EOL
359 B
C++
21 lines
No EOL
359 B
C++
#pragma once
|
|
|
|
#include "block.h"
|
|
|
|
/*
|
|
Delay the I branch by one sample.
|
|
This is meant mainly for OQPSK
|
|
demodulation.
|
|
*/
|
|
namespace dsp
|
|
{
|
|
class DelayOneImagBlock : public Block<complex_t, complex_t>
|
|
{
|
|
private:
|
|
float lastSamp;
|
|
void work();
|
|
|
|
public:
|
|
DelayOneImagBlock(std::shared_ptr<dsp::stream<complex_t>> input);
|
|
};
|
|
} |