/* * Copyright (C) 2015 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 "ui_rds.hpp" #include "ch.h" #include "ff.h" #include "hackrf_gpio.hpp" #include "portapack.hpp" #include "radio.hpp" #include "hackrf_hal.hpp" #include "portapack_shared_memory.hpp" #include using namespace hackrf::one; namespace ui { AlphanumView::AlphanumView( NavigationView& nav, char txt[], uint8_t max_len ) { _max_len = max_len; _lowercase = false; static constexpr Style style_alpha { .font = font::fixed_8x16, .background = Color::red(), .foreground = Color::black(), }; static constexpr Style style_num { .font = font::fixed_8x16, .background = Color::yellow(), .foreground = Color::black(), }; txtidx = 0; memcpy(txtinput, txt, max_len+1); add_child(&text_input); const auto button_fn = [this](Button& button) { this->on_button(button); }; const char* const key_caps = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ. !<"; size_t n = 0; for(auto& button : buttons) { add_child(&button); const std::string label { key_caps[n] }; button.on_select = button_fn; button.set_parent_rect({ static_cast((n % 5) * button_w), static_cast((n / 5) * button_h + 18), button_w, button_h }); button.set_text(label); if ((n < 10) || (n == 39)) button.set_style(&style_num); else button.set_style(&style_alpha); n++; } add_child(&button_lowercase); button_lowercase.on_select = [this, &nav, txt, max_len](Button&) { if (_lowercase == true) { _lowercase = false; button_lowercase.set_text("LC"); } else { _lowercase = true; button_lowercase.set_text("UC"); } }; add_child(&button_done); button_done.on_select = [this, &nav, txt, max_len](Button&) { memcpy(txt, txtinput, max_len+1); nav.pop(); }; update_text(); } void AlphanumView::focus() { button_done.focus(); } char * AlphanumView::value() { return txtinput; } void AlphanumView::on_button(Button& button) { const auto s = button.text(); if( s == "<" ) { char_delete(); } else { if (_lowercase == true) char_add(s[0] + 32); else char_add(s[0]); } update_text(); } void AlphanumView::char_add(const char c) { if (txtidx < _max_len) { txtinput[txtidx] = c; txtidx++; } } void AlphanumView::char_delete() { if (txtidx) { txtidx--; txtinput[txtidx] = ' '; } } void AlphanumView::update_text() { text_input.set(txtinput); } void RDSView::focus() { button_setpsn.focus(); } RDSView::~RDSView() { transmitter_model.disable(); } std::string to_string_bin(const uint32_t n, const uint8_t l) { char p[32]; for (uint8_t c = 0; c < l; c++) { if ((n<>15) ^ (CRC>>9); if (doinv) CRC ^= 0b0011011100; CRC = ((CRC<<1) | doinv) & 0x3FF; } return (blockdata<<10) | (CRC ^ offset); } //Make PI //Set frequency //TA/TP flags //Group selection //RST SNCF //Jammer //Microphone troll //CTCSS void RDSView::paint(Painter& painter) { uint8_t c; uint32_t group[4][4] = { {0b1111100001001001, //PI 0b0000110011101000, //Address 0b1111100001001001, //PI 0b0000000000000000}, //Replaced {0b1111100001001001, //PI 0b0000110011101001, //Address 0b1111100001001001, //PI 0b0000000000000000}, //Replaced {0b1111100001001001, //PI 0b0000110011101010, //Address 0b1111100001001001, //PI 0b0000000000000000}, //Replaced {0b1111100001001001, //PI 0b0000110011101011, //Address 0b1111100001001001, //PI 0b0000000000000000}, //Replaced }; //Insert PSN data in groups group[0][3] = (psname[0]<<8) | psname[1]; group[1][3] = (psname[2]<<8) | psname[3]; group[2][3] = (psname[4]<<8) | psname[5]; group[3][3] = (psname[6]<<8) | psname[7]; //Generate checkbits for (c = 0; c < 4; c++) { group[c][0] = makeblock(group[c][0], 0b0011111100); group[c][1] = makeblock(group[c][1], 0b0110011000); group[c][2] = makeblock(group[c][2], 0b1101010000); //C' group[c][3] = makeblock(group[c][3], 0b0110110100); } const Point offset = { static_cast(64), static_cast(32) }; const auto text = psname; painter.draw_string( screen_pos() + offset, style(), text ); for (c = 0; c < 16; c++) { shared_memory.rdsdata[c] = group[c >> 2][c & 3]; } } RDSView::RDSView( NavigationView& nav, TransmitterModel& transmitter_model ) : transmitter_model(transmitter_model) { transmitter_model.set_tuning_frequency(93000000); strcpy(psname, "TEST1234"); add_children({ { &text_title, &button_setpsn, &button_transmit, &button_exit } }); button_setpsn.on_select = [this,&nav](Button&){ auto an_view = new AlphanumView { nav, psname, 8 }; nav.push(an_view); }; button_transmit.on_select = [&transmitter_model](Button&){ transmitter_model.enable(); }; button_exit.on_select = [&nav](Button&){ nav.pop(); }; } } /* namespace ui */