mirror of
https://github.com/portapack-mayhem/mayhem-firmware.git
synced 2024-12-14 12:08:40 +00:00
Move app_analog_audio.hpp code to .cpp.
This commit is contained in:
parent
11e8456da0
commit
d15afc9f7d
@ -168,6 +168,7 @@ CPPSRC = main.cpp \
|
|||||||
ui_spectrum.cpp \
|
ui_spectrum.cpp \
|
||||||
receiver_model.cpp \
|
receiver_model.cpp \
|
||||||
spectrum_color_lut.cpp \
|
spectrum_color_lut.cpp \
|
||||||
|
app_analog_audio.cpp \
|
||||||
ais_baseband.cpp \
|
ais_baseband.cpp \
|
||||||
app_ais.cpp \
|
app_ais.cpp \
|
||||||
app_tpms.cpp \
|
app_tpms.cpp \
|
||||||
|
36
firmware/application/app_analog_audio.cpp
Normal file
36
firmware/application/app_analog_audio.cpp
Normal 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);
|
||||||
|
}
|
@ -24,18 +24,10 @@
|
|||||||
|
|
||||||
#include "receiver_model.hpp"
|
#include "receiver_model.hpp"
|
||||||
#include "ui_spectrum.hpp"
|
#include "ui_spectrum.hpp"
|
||||||
#include "utility.hpp"
|
|
||||||
|
|
||||||
class AnalogAudioModel {
|
class AnalogAudioModel {
|
||||||
public:
|
public:
|
||||||
AnalogAudioModel(ReceiverModel::Mode mode) {
|
AnalogAudioModel(ReceiverModel::Mode mode);
|
||||||
receiver_model.set_baseband_configuration({
|
|
||||||
.mode = toUType(mode),
|
|
||||||
.sampling_rate = 3072000,
|
|
||||||
.decimation_factor = 4,
|
|
||||||
});
|
|
||||||
receiver_model.set_baseband_bandwidth(1750000);
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
namespace ui {
|
namespace ui {
|
||||||
|
Loading…
Reference in New Issue
Block a user