Move app_analog_audio.hpp code to .cpp.

This commit is contained in:
Jared Boone 2015-12-01 22:04:04 -08:00
parent 11e8456da0
commit d15afc9f7d
3 changed files with 38 additions and 9 deletions

View File

@ -168,6 +168,7 @@ CPPSRC = main.cpp \
ui_spectrum.cpp \
receiver_model.cpp \
spectrum_color_lut.cpp \
app_analog_audio.cpp \
ais_baseband.cpp \
app_ais.cpp \
app_tpms.cpp \

View File

@ -0,0 +1,36 @@
/*
* Copyright (C) 2014 Jared Boone, ShareBrained Technology, Inc.
*
* This file is part of PortaPack.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street,
* Boston, MA 02110-1301, USA.
*/
#include "app_analog_audio.hpp"
#include "portapack.hpp"
using namespace portapack;
#include "utility.hpp"
AnalogAudioModel::AnalogAudioModel(ReceiverModel::Mode mode) {
receiver_model.set_baseband_configuration({
.mode = toUType(mode),
.sampling_rate = 3072000,
.decimation_factor = 4,
});
receiver_model.set_baseband_bandwidth(1750000);
}

View File

@ -24,18 +24,10 @@
#include "receiver_model.hpp"
#include "ui_spectrum.hpp"
#include "utility.hpp"
class AnalogAudioModel {
public:
AnalogAudioModel(ReceiverModel::Mode mode) {
receiver_model.set_baseband_configuration({
.mode = toUType(mode),
.sampling_rate = 3072000,
.decimation_factor = 4,
});
receiver_model.set_baseband_bandwidth(1750000);
}
AnalogAudioModel(ReceiverModel::Mode mode);
};
namespace ui {