MCPcopy Create free account
hub / github.com/cjcliffe/CubicSDR / ModemAM

Method ModemAM

src/modules/modem/analog/ModemAM.cpp:6–11  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4#include "ModemAM.h"
5
6ModemAM::ModemAM() : ModemAnalog() {
7 // Create a DC blocker using 25 samples wide window
8 // and 30dB reduction of the DC level.
9 mDCBlock = firfilt_rrrf_create_dc_blocker (25,30.0f);
10 useSignalOutput(true);
11}
12
13ModemAM::~ModemAM() {
14 firfilt_rrrf_destroy(mDCBlock);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected