/* * Copyright (C) 2015 Jared Boone, ShareBrained Technology, Inc. * Copyright (C) 2016 Furrtek * * 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 "ui_rds.hpp" #include "rds.hpp" #include "portapack.hpp" #include "baseband_api.hpp" #include "portapack_shared_memory.hpp" #include using namespace portapack; using namespace rds; namespace ui { void RDSView::focus() { button_editpsn.focus(); } void RDSView::on_tuning_frequency_changed(rf::Frequency f) { transmitter_model.set_tuning_frequency(f); } RDSView::~RDSView() { transmitter_model.disable(); baseband::shutdown(); } void RDSView::start_tx() { transmitter_model.set_baseband_configuration({ .mode = 0, .sampling_rate = 2280000, .decimation_factor = 1, }); transmitter_model.set_rf_amp(true); transmitter_model.set_lna(40); transmitter_model.set_vga(40); transmitter_model.set_baseband_bandwidth(1750000); transmitter_model.enable(); baseband::set_rds_data(message_length); } void RDSView::paint(Painter& painter) { char RadioTextA[17]; (void)painter; text_psn.set(PSN); memcpy(RadioTextA, RadioText, 16); RadioTextA[16] = 0; text_radiotexta.set(RadioTextA); memcpy(RadioTextA, RadioText + 16, 8); RadioTextA[8] = 0; text_radiotextb.set(RadioTextA); } RDSView::RDSView(NavigationView& nav) { baseband::run_image(portapack::spi_flash::image_tag_rds); strcpy(PSN, "TEST1234"); strcpy(RadioText, "Radiotext test ABCD1234"); add_children({ { &field_frequency, &options_pty, &options_countrycode, &options_coverage, &text_tx, &button_editpsn, &text_psn, &button_txpsn, &button_editradiotext, &text_radiotexta, &text_radiotextb, &button_txradiotext, &button_exit } }); field_frequency.set_value(transmitter_model.tuning_frequency()); field_frequency.set_step(50000); // 50kHz steps field_frequency.on_change = [this](rf::Frequency f) { this->on_tuning_frequency_changed(f); }; field_frequency.on_edit = [this, &nav]() { auto new_view = nav.push(field_frequency.value()); new_view->on_changed = [this](rf::Frequency f) { this->field_frequency.set_value(f); this->on_tuning_frequency_changed(f); }; }; options_pty.set_selected_index(0); // None options_countrycode.set_selected_index(18); // France options_coverage.set_selected_index(0); // Local button_editpsn.on_select = [this,&nav](Button&){ textentry(nav, PSN, 8); }; button_txpsn.on_select = [this](Button&){ if (txing) { button_txpsn.set_text("PSN"); button_txradiotext.set_text("Radiotext"); transmitter_model.disable(); txing = false; } else { message_length = gen_PSN(PSN, options_pty.selected_index()); button_txpsn.set_text("STOP"); txing = true; start_tx(); } }; button_editradiotext.on_select = [this,&nav](Button&){ textentry(nav, RadioText, 24); }; button_txradiotext.on_select = [this](Button&){ if (txing) { button_txpsn.set_text("PSN"); button_txradiotext.set_text("Radiotext"); transmitter_model.disable(); txing = false; } else { message_length = gen_RadioText(RadioText, options_pty.selected_index()); button_txradiotext.set_text("STOP"); txing = true; start_tx(); } }; button_exit.on_select = [&nav](Button&){ nav.pop(); }; } } /* namespace ui */