/* * Copyright (C) 2015 Jared Boone, ShareBrained Technology, Inc. * Copyright (C) 2017 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_adsb_rx.hpp" #include "ui_alphanum.hpp" #include "ui_geomap.hpp" #include "rtc_time.hpp" #include "string_format.hpp" #include "portapack.hpp" #include "baseband_api.hpp" #include "portapack_persistent_memory.hpp" #include #include using namespace portapack; namespace ui { template<> void RecentEntriesTable::draw( const Entry& entry, const Rect& target_rect, Painter& painter, const Style& style ) { char aged_color; Color target_color; if (entry.age < 10) { aged_color = 0x10; target_color = Color::green(); } else if ((entry.age >= 10) && (entry.age < 30)) { aged_color = 0x07; target_color = Color::light_grey(); } else { aged_color = 0x08; target_color = Color::dark_grey(); } std::string string = "\x1B"; string += aged_color; string += to_string_hex(entry.ICAO_address, 6) + " " + entry.callsign + " " + (entry.hits <= 999 ? to_string_dec_uint(entry.hits, 4) : "999+") + " " + entry.time_string; painter.draw_string( target_rect.location(), style, string ); if (entry.pos.valid) painter.draw_bitmap(target_rect.location() + Point(15 * 8, 0), bitmap_target, target_color, style.background); } void ADSBRxView::focus() { field_lna.focus(); } ADSBRxView::~ADSBRxView() { rtc_time::signal_tick_second -= signal_token_tick_second; receiver_model.disable(); baseband::shutdown(); } void ADSBRxView::on_frame(const ADSBFrameMessage * message) { rtc::RTC datetime; std::string str_timestamp; std::string callsign; std::string str_info; auto frame = message->frame; uint32_t ICAO_address = frame.get_ICAO_address(); if (frame.check_CRC() && frame.get_ICAO_address()) { rtcGetTime(&RTCD1, &datetime); auto& entry = ::on_packet(recent, ICAO_address); frame.set_rx_timestamp(datetime.minute() * 60 + datetime.second()); entry.reset_age(); str_timestamp = to_string_datetime(datetime, HMS); entry.set_time_string(str_timestamp); entry.inc_hit(); if (frame.get_DF() == DF_ADSB) { uint8_t msg_type = frame.get_msg_type(); uint8_t * raw_data = frame.get_raw_data(); if ((msg_type >= 1) && (msg_type <= 4)) { callsign = decode_frame_id(frame); entry.set_callsign(callsign); } else if ((msg_type >= 9) && (msg_type <= 18)) { entry.set_frame_pos(frame, raw_data[6] & 4); if (entry.pos.valid) { str_info = "Alt:" + to_string_dec_uint(entry.pos.altitude) + " Lat" + to_string_dec_int(entry.pos.latitude) + "." + to_string_dec_int((int)(entry.pos.latitude * 1000) % 100) + " Lon" + to_string_dec_int(entry.pos.longitude) + "." + to_string_dec_int((int)(entry.pos.longitude * 1000) % 100); entry.set_info_string(str_info); } } } recent_entries_view.set_dirty(); } } void ADSBRxView::on_tick_second() { for (auto& entry : recent) { entry.inc_age(); if ((entry.age == 10) || (entry.age == 30)) recent_entries_view.set_dirty(); } } ADSBRxView::ADSBRxView(NavigationView&) { baseband::run_image(portapack::spi_flash::image_tag_adsb_rx); add_children({ &labels, &rssi, &field_lna, &field_vga, &text_debug_a, &text_debug_b, &text_debug_c, &recent_entries_view }); recent_entries_view.set_parent_rect({ 0, 64, 240, 224 }); recent_entries_view.on_select = [this](const AircraftRecentEntry& entry) { text_debug_a.set(entry.info_string); text_debug_b.set(to_string_hex_array(entry.frame_pos_even.get_raw_data(), 14)); text_debug_c.set(to_string_hex_array(entry.frame_pos_odd.get_raw_data(), 14)); }; signal_token_tick_second = rtc_time::signal_tick_second += [this]() { on_tick_second(); }; baseband::set_adsb(); receiver_model.set_tuning_frequency(1090000000); receiver_model.set_rf_amp(true); field_lna.set_value(40); field_vga.set_value(40); receiver_model.set_modulation(ReceiverModel::Mode::SpectrumAnalysis); receiver_model.set_sampling_rate(2000000); receiver_model.set_baseband_bandwidth(2500000); receiver_model.enable(); } } /* namespace ui */