mirror of
https://github.com/cjcliffe/CubicSDR.git
synced 2025-11-06 22:30:23 -05:00
13 lines
262 B
C
13 lines
262 B
C
|
|
#pragma once
|
||
|
|
#include "Modem.h"
|
||
|
|
#include "ModemAnalog.h"
|
||
|
|
|
||
|
|
class ModemAM : public ModemAnalog {
|
||
|
|
public:
|
||
|
|
ModemAM();
|
||
|
|
Modem *factory();
|
||
|
|
void demodulate(ModemKit *kit, ModemIQData *input, AudioThreadInput *audioOut);
|
||
|
|
|
||
|
|
private:
|
||
|
|
ampmodem demodAM;
|
||
|
|
};
|