Removed unused GUI items

This commit is contained in:
heurist1 2021-10-22 15:41:48 +01:00
parent 62f063aef5
commit 6ef24ce71c
2 changed files with 1 additions and 22 deletions

View file

@ -123,6 +123,7 @@ POCSAGAppView::POCSAGAppView(NavigationView& nav) {
audio::output::start();
audio::output::unmute();
baseband::set_pocsag(pocsag::BitRate::FSK1200, true);
}
POCSAGAppView::~POCSAGAppView() {
@ -217,10 +218,6 @@ void POCSAGAppView::on_packet(const POCSAGPacketMessage * message) {
logger->log_raw_data(message->packet, target_frequency());
}
void POCSAGAppView::on_config_changed(const uint32_t new_bitrate, bool new_phase) {
baseband::set_pocsag(pocsag_bitrates[new_bitrate], new_phase);
}
void POCSAGAppView::set_target_frequency(const uint32_t new_value) {
target_frequency_ = new_value;
receiver_model.set_tuning_frequency(new_value);