2017-07-14 05:02:21 -04:00
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2021-06-23 18:52:15 -04:00
|
|
|
#include <strings.h>
|
2021-06-23 14:54:34 -04:00
|
|
|
|
2017-07-14 05:02:21 -04:00
|
|
|
#include "ui_adsb_rx.hpp"
|
|
|
|
#include "ui_alphanum.hpp"
|
|
|
|
|
2017-08-27 16:03:17 -04:00
|
|
|
#include "rtc_time.hpp"
|
2017-07-14 05:02:21 -04:00
|
|
|
#include "string_format.hpp"
|
|
|
|
#include "baseband_api.hpp"
|
|
|
|
#include "portapack_persistent_memory.hpp"
|
|
|
|
|
|
|
|
using namespace portapack;
|
|
|
|
|
|
|
|
namespace ui {
|
|
|
|
|
2017-07-23 07:20:32 -04:00
|
|
|
template<>
|
2017-08-17 07:56:47 -04:00
|
|
|
void RecentEntriesTable<AircraftRecentEntries>::draw(
|
2017-07-23 07:20:32 -04:00
|
|
|
const Entry& entry,
|
|
|
|
const Rect& target_rect,
|
|
|
|
Painter& painter,
|
|
|
|
const Style& style
|
|
|
|
) {
|
2017-08-27 16:03:17 -04:00
|
|
|
char aged_color;
|
|
|
|
Color target_color;
|
2018-03-27 07:52:07 -04:00
|
|
|
auto entry_age = entry.age;
|
2017-08-27 16:03:17 -04:00
|
|
|
|
2018-03-27 07:52:07 -04:00
|
|
|
// Color decay for flights not being updated anymore
|
|
|
|
if (entry_age < ADSB_DECAY_A) {
|
2017-08-27 16:03:17 -04:00
|
|
|
aged_color = 0x10;
|
|
|
|
target_color = Color::green();
|
2021-10-29 11:59:52 -04:00
|
|
|
} else if (entry_age < ADSB_DECAY_B) {
|
2017-08-27 16:03:17 -04:00
|
|
|
aged_color = 0x07;
|
|
|
|
target_color = Color::light_grey();
|
|
|
|
} else {
|
|
|
|
aged_color = 0x08;
|
|
|
|
target_color = Color::dark_grey();
|
|
|
|
}
|
|
|
|
|
2018-03-27 07:52:07 -04:00
|
|
|
std::string entry_string = "\x1B";
|
|
|
|
entry_string += aged_color;
|
2021-10-17 05:03:28 -04:00
|
|
|
#if false
|
2018-03-27 07:52:07 -04:00
|
|
|
entry_string += to_string_hex(entry.ICAO_address, 6) + " " +
|
2017-08-27 16:03:17 -04:00
|
|
|
entry.callsign + " " +
|
|
|
|
(entry.hits <= 999 ? to_string_dec_uint(entry.hits, 4) : "999+") + " " +
|
|
|
|
entry.time_string;
|
2021-10-17 05:03:28 -04:00
|
|
|
#else
|
2021-11-01 18:51:06 -04:00
|
|
|
// SBT
|
2021-10-17 05:03:28 -04:00
|
|
|
entry_string +=
|
2021-11-01 18:51:06 -04:00
|
|
|
(entry.callsign[0]!=' ' ? entry.callsign + " " : to_string_hex(entry.ICAO_address, 6) + " ") +
|
|
|
|
to_string_dec_uint((unsigned int)((entry.pos.altitude+50)/100),4) +
|
2021-11-06 06:20:39 -04:00
|
|
|
to_string_dec_uint((unsigned int)entry.velo.speed,4) +
|
2021-11-06 08:35:37 -04:00
|
|
|
to_string_dec_uint((unsigned int)(entry.amp>>9),4) + " " +
|
2021-10-17 05:03:28 -04:00
|
|
|
(entry.hits <= 999 ? to_string_dec_uint(entry.hits, 3) + " " : "1k+ ") +
|
2022-01-12 10:31:59 -05:00
|
|
|
to_string_dec_uint(entry.age, 4);
|
2021-10-17 05:03:28 -04:00
|
|
|
#endif
|
2017-08-27 16:03:17 -04:00
|
|
|
|
2017-08-16 05:02:57 -04:00
|
|
|
painter.draw_string(
|
|
|
|
target_rect.location(),
|
|
|
|
style,
|
2018-03-27 07:52:07 -04:00
|
|
|
entry_string
|
2017-08-16 05:02:57 -04:00
|
|
|
);
|
2017-08-17 07:56:47 -04:00
|
|
|
|
|
|
|
if (entry.pos.valid)
|
2021-11-01 18:51:06 -04:00
|
|
|
painter.draw_bitmap(target_rect.location() + Point(8 * 8, 0), bitmap_target, target_color, style.background);
|
2017-07-23 07:20:32 -04:00
|
|
|
}
|
|
|
|
|
2017-11-08 15:23:06 -05:00
|
|
|
void ADSBLogger::log_str(std::string& logline) {
|
|
|
|
rtc::RTC datetime;
|
|
|
|
rtcGetTime(&RTCD1, &datetime);
|
|
|
|
log_file.write_entry(datetime,logline);
|
|
|
|
}
|
|
|
|
|
2021-12-01 17:23:40 -05:00
|
|
|
|
|
|
|
// Aircraft Details
|
|
|
|
void ADSBRxAircraftDetailsView::focus() {
|
|
|
|
button_close.focus();
|
|
|
|
}
|
|
|
|
|
|
|
|
ADSBRxAircraftDetailsView::~ADSBRxAircraftDetailsView() {
|
|
|
|
on_close_();
|
|
|
|
}
|
|
|
|
|
|
|
|
ADSBRxAircraftDetailsView::ADSBRxAircraftDetailsView(
|
|
|
|
NavigationView& nav,
|
|
|
|
const AircraftRecentEntry& entry,
|
|
|
|
const std::function<void(void)> on_close
|
|
|
|
) : entry_copy(entry),
|
|
|
|
on_close_(on_close)
|
2022-01-19 11:01:38 -05:00
|
|
|
{
|
2021-12-01 17:23:40 -05:00
|
|
|
|
|
|
|
add_children({
|
|
|
|
&labels,
|
|
|
|
&text_icao_address,
|
|
|
|
&text_registration,
|
|
|
|
&text_manufacturer,
|
|
|
|
&text_model,
|
|
|
|
&text_type,
|
|
|
|
&text_number_of_engines,
|
|
|
|
&text_engine_type,
|
|
|
|
&text_owner,
|
2021-12-17 14:27:00 -05:00
|
|
|
&text_operator,
|
2021-12-01 17:23:40 -05:00
|
|
|
&button_close
|
|
|
|
});
|
|
|
|
|
|
|
|
std::unique_ptr<ADSBLogger> logger { };
|
|
|
|
//update(entry_copy);
|
|
|
|
|
|
|
|
|
2022-01-19 11:01:38 -05:00
|
|
|
icao_code = to_string_hex(entry_copy.ICAO_address, 6);
|
|
|
|
text_icao_address.set(to_string_hex(entry_copy.ICAO_address, 6));
|
2021-12-01 17:23:40 -05:00
|
|
|
|
|
|
|
// Try getting the aircraft information from icao24.db
|
2022-01-19 11:01:38 -05:00
|
|
|
return_code = db.retrieve_aircraft_record(&aircraft_record, icao_code);
|
|
|
|
switch(return_code) {
|
|
|
|
case DATABASE_RECORD_FOUND:
|
|
|
|
text_registration.set(aircraft_record.aircraft_registration);
|
|
|
|
text_manufacturer.set(aircraft_record.aircraft_manufacturer);
|
|
|
|
text_model.set(aircraft_record.aircraft_model);
|
|
|
|
text_owner.set(aircraft_record.aircraft_owner);
|
|
|
|
text_operator.set(aircraft_record.aircraft_operator);
|
|
|
|
// Check for ICAO type, e.g. L2J
|
|
|
|
if(strlen(aircraft_record.icao_type) == 3) {
|
|
|
|
switch(aircraft_record.icao_type[0]) {
|
2021-12-01 17:23:40 -05:00
|
|
|
case 'L':
|
|
|
|
text_type.set("Landplane");
|
|
|
|
break;
|
|
|
|
case 'S':
|
|
|
|
text_type.set("Seaplane");
|
|
|
|
break;
|
|
|
|
case 'A':
|
|
|
|
text_type.set("Amphibian");
|
|
|
|
break;
|
|
|
|
case 'H':
|
|
|
|
text_type.set("Helicopter");
|
|
|
|
break;
|
|
|
|
case 'G':
|
|
|
|
text_type.set("Gyrocopter");
|
|
|
|
break;
|
|
|
|
case 'T':
|
|
|
|
text_type.set("Tilt-wing aircraft");
|
|
|
|
break;
|
|
|
|
}
|
2022-01-19 11:01:38 -05:00
|
|
|
text_number_of_engines.set(std::string(1, aircraft_record.icao_type[1]));
|
|
|
|
switch(aircraft_record.icao_type[2]) {
|
2021-12-01 17:23:40 -05:00
|
|
|
case 'P':
|
|
|
|
text_engine_type.set("Piston engine");
|
|
|
|
break;
|
|
|
|
case 'T':
|
|
|
|
text_engine_type.set("Turboprop/Turboshaft engine");
|
|
|
|
break;
|
|
|
|
case 'J':
|
|
|
|
text_engine_type.set("Jet engine");
|
|
|
|
break;
|
|
|
|
case 'E':
|
|
|
|
text_engine_type.set("Electric engine");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2021-12-12 04:38:05 -05:00
|
|
|
}
|
2022-01-19 11:01:38 -05:00
|
|
|
// Check for ICAO type designator
|
|
|
|
else if(strlen(aircraft_record.icao_type) == 4) {
|
|
|
|
if(strcmp(aircraft_record.icao_type,"SHIP") == 0) text_type.set("Airship");
|
|
|
|
else if(strcmp(aircraft_record.icao_type,"BALL") == 0) text_type.set("Balloon");
|
|
|
|
else if(strcmp(aircraft_record.icao_type,"GLID") == 0) text_type.set("Glider / sailplane");
|
|
|
|
else if(strcmp(aircraft_record.icao_type,"ULAC") == 0) text_type.set("Micro/ultralight aircraft");
|
|
|
|
else if(strcmp(aircraft_record.icao_type,"GYRO") == 0) text_type.set("Micro/ultralight autogyro");
|
|
|
|
else if(strcmp(aircraft_record.icao_type,"UHEL") == 0) text_type.set("Micro/ultralight helicopter");
|
|
|
|
else if(strcmp(aircraft_record.icao_type,"SHIP") == 0) text_type.set("Airship");
|
|
|
|
else if(strcmp(aircraft_record.icao_type,"PARA") == 0) text_type.set("Powered parachute/paraplane");
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case DATABASE_NOT_FOUND:
|
|
|
|
text_manufacturer.set("No icao24.db file");
|
|
|
|
break;
|
2021-12-01 17:23:40 -05:00
|
|
|
}
|
|
|
|
button_close.on_select = [&nav](Button&){
|
|
|
|
nav.pop();
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
// End of Aicraft details
|
|
|
|
|
2017-08-28 02:05:31 -04:00
|
|
|
void ADSBRxDetailsView::focus() {
|
|
|
|
button_see_map.focus();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ADSBRxDetailsView::update(const AircraftRecentEntry& entry) {
|
|
|
|
entry_copy = entry;
|
|
|
|
uint32_t age = entry_copy.age;
|
|
|
|
|
|
|
|
if (age < 60)
|
|
|
|
text_last_seen.set(to_string_dec_uint(age) + " seconds ago");
|
|
|
|
else
|
|
|
|
text_last_seen.set(to_string_dec_uint(age / 60) + " minutes ago");
|
|
|
|
|
|
|
|
text_infos.set(entry_copy.info_string);
|
2020-07-25 11:22:21 -04:00
|
|
|
if(entry_copy.velo.heading < 360 && entry_copy.velo.speed >=0){ //I don't like this but...
|
|
|
|
text_info2.set("Hdg:" + to_string_dec_uint(entry_copy.velo.heading) + " Spd:" + to_string_dec_int(entry_copy.velo.speed));
|
|
|
|
}else{
|
|
|
|
text_info2.set("");
|
|
|
|
}
|
2017-08-28 02:05:31 -04:00
|
|
|
text_frame_pos_even.set(to_string_hex_array(entry_copy.frame_pos_even.get_raw_data(), 14));
|
|
|
|
text_frame_pos_odd.set(to_string_hex_array(entry_copy.frame_pos_odd.get_raw_data(), 14));
|
|
|
|
|
|
|
|
if (send_updates)
|
2022-01-23 16:34:01 -05:00
|
|
|
geomap_view->update_position(entry_copy.pos.latitude, entry_copy.pos.longitude, entry_copy.velo.heading, entry_copy.pos.altitude);
|
2017-08-28 02:05:31 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
ADSBRxDetailsView::~ADSBRxDetailsView() {
|
|
|
|
on_close_();
|
|
|
|
}
|
|
|
|
|
|
|
|
ADSBRxDetailsView::ADSBRxDetailsView(
|
|
|
|
NavigationView& nav,
|
|
|
|
const AircraftRecentEntry& entry,
|
|
|
|
const std::function<void(void)> on_close
|
|
|
|
) : entry_copy(entry),
|
|
|
|
on_close_(on_close)
|
|
|
|
{
|
2022-01-19 11:01:38 -05:00
|
|
|
|
2017-08-28 02:05:31 -04:00
|
|
|
add_children({
|
|
|
|
&labels,
|
2021-12-01 17:23:40 -05:00
|
|
|
&text_icao_address,
|
2017-08-28 02:05:31 -04:00
|
|
|
&text_callsign,
|
|
|
|
&text_last_seen,
|
|
|
|
&text_airline,
|
|
|
|
&text_country,
|
|
|
|
&text_infos,
|
2020-07-24 19:56:09 -04:00
|
|
|
&text_info2,
|
2017-08-28 02:05:31 -04:00
|
|
|
&text_frame_pos_even,
|
|
|
|
&text_frame_pos_odd,
|
2021-12-01 17:23:40 -05:00
|
|
|
&button_aircraft_details,
|
2017-08-28 02:05:31 -04:00
|
|
|
&button_see_map
|
|
|
|
});
|
2018-03-27 07:52:07 -04:00
|
|
|
|
2017-11-08 15:23:06 -05:00
|
|
|
std::unique_ptr<ADSBLogger> logger { };
|
2017-08-28 02:05:31 -04:00
|
|
|
update(entry_copy);
|
2017-11-08 15:23:06 -05:00
|
|
|
|
2017-08-28 02:05:31 -04:00
|
|
|
// The following won't (shouldn't !) change for a given airborne aircraft
|
|
|
|
// Try getting the airline's name from airlines.db
|
2022-01-19 11:01:38 -05:00
|
|
|
airline_code = entry_copy.callsign.substr(0, 3);
|
|
|
|
return_code = db.retrieve_airline_record(&airline_record, airline_code);
|
|
|
|
switch(return_code) {
|
|
|
|
case DATABASE_RECORD_FOUND:
|
|
|
|
text_airline.set(airline_record.airline);
|
|
|
|
text_country.set(airline_record.country);
|
|
|
|
break;
|
|
|
|
case DATABASE_NOT_FOUND:
|
|
|
|
text_airline.set("No airlines.db file");
|
|
|
|
break;
|
2017-08-28 02:05:31 -04:00
|
|
|
}
|
2022-01-19 11:01:38 -05:00
|
|
|
|
|
|
|
|
2017-08-28 02:05:31 -04:00
|
|
|
text_callsign.set(entry_copy.callsign);
|
2021-12-01 17:23:40 -05:00
|
|
|
text_icao_address.set(to_string_hex(entry_copy.ICAO_address, 6));
|
|
|
|
|
|
|
|
button_aircraft_details.on_select = [this, &nav](Button&) {
|
|
|
|
//detailed_entry_key = entry.key();
|
|
|
|
aircraft_details_view = nav.push<ADSBRxAircraftDetailsView>(
|
|
|
|
entry_copy,
|
|
|
|
[this]() {
|
|
|
|
send_updates = false;
|
|
|
|
});
|
|
|
|
send_updates = false;
|
|
|
|
};
|
|
|
|
|
2017-08-28 02:05:31 -04:00
|
|
|
button_see_map.on_select = [this, &nav](Button&) {
|
2021-12-01 17:23:40 -05:00
|
|
|
if (!send_updates) { // Prevent recursively launching the map
|
2021-10-11 05:14:16 -04:00
|
|
|
geomap_view = nav.push<GeoMapView>(
|
|
|
|
entry_copy.callsign,
|
|
|
|
entry_copy.pos.altitude,
|
|
|
|
GeoPos::alt_unit::FEET,
|
|
|
|
entry_copy.pos.latitude,
|
|
|
|
entry_copy.pos.longitude,
|
|
|
|
entry_copy.velo.heading,
|
|
|
|
[this]() {
|
2017-08-28 02:05:31 -04:00
|
|
|
send_updates = false;
|
|
|
|
});
|
2021-10-11 05:14:16 -04:00
|
|
|
send_updates = true;
|
|
|
|
}
|
2017-08-28 02:05:31 -04:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-12-01 17:23:40 -05:00
|
|
|
|
2017-07-14 05:02:21 -04:00
|
|
|
void ADSBRxView::focus() {
|
2017-08-28 02:05:31 -04:00
|
|
|
field_vga.focus();
|
2017-07-14 05:02:21 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
ADSBRxView::~ADSBRxView() {
|
2021-10-29 11:59:52 -04:00
|
|
|
receiver_model.set_tuning_frequency(prevFreq);
|
|
|
|
|
2017-08-27 16:03:17 -04:00
|
|
|
rtc_time::signal_tick_second -= signal_token_tick_second;
|
2017-07-23 07:20:32 -04:00
|
|
|
receiver_model.disable();
|
|
|
|
baseband::shutdown();
|
2017-07-14 05:02:21 -04:00
|
|
|
}
|
|
|
|
|
2021-10-11 05:14:16 -04:00
|
|
|
AircraftRecentEntry ADSBRxView::find_or_create_entry(uint32_t ICAO_address) {
|
|
|
|
auto it = find(recent, ICAO_address);
|
|
|
|
|
|
|
|
// If not found
|
|
|
|
if (it == std::end(recent)){
|
|
|
|
recent.emplace_front(ICAO_address); // Add it
|
|
|
|
truncate_entries(recent); // Truncate the list
|
2021-10-29 11:59:52 -04:00
|
|
|
sort_entries_by_state();
|
2021-10-11 05:14:16 -04:00
|
|
|
it = find(recent, ICAO_address); // Find it again
|
|
|
|
}
|
|
|
|
return *it;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ADSBRxView::replace_entry(AircraftRecentEntry & entry)
|
|
|
|
{
|
|
|
|
uint32_t ICAO_address = entry.ICAO_address;
|
|
|
|
|
|
|
|
std::replace_if( recent.begin(), recent.end(),
|
|
|
|
[ICAO_address](const AircraftRecentEntry & compEntry) {return ICAO_address == compEntry.ICAO_address;},
|
|
|
|
entry);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ADSBRxView::sort_entries_by_state()
|
|
|
|
{
|
|
|
|
// Sorting List pn age_state using lambda function as comparator
|
|
|
|
recent.sort([](const AircraftRecentEntry & left, const AircraftRecentEntry & right){return (left.age_state < right.age_state); });
|
|
|
|
}
|
|
|
|
|
2017-08-16 05:02:57 -04:00
|
|
|
void ADSBRxView::on_frame(const ADSBFrameMessage * message) {
|
|
|
|
rtc::RTC datetime;
|
|
|
|
std::string str_timestamp;
|
|
|
|
std::string callsign;
|
2017-08-27 16:03:17 -04:00
|
|
|
std::string str_info;
|
2017-11-08 15:23:06 -05:00
|
|
|
std::string logentry;
|
|
|
|
|
2017-08-16 05:02:57 -04:00
|
|
|
auto frame = message->frame;
|
|
|
|
uint32_t ICAO_address = frame.get_ICAO_address();
|
2020-07-25 11:22:21 -04:00
|
|
|
|
2021-06-19 18:41:06 -04:00
|
|
|
if (frame.check_CRC() && ICAO_address) {
|
2017-08-27 16:03:17 -04:00
|
|
|
rtcGetTime(&RTCD1, &datetime);
|
2021-10-11 05:14:16 -04:00
|
|
|
auto entry = find_or_create_entry(ICAO_address);
|
2017-08-27 16:03:17 -04:00
|
|
|
frame.set_rx_timestamp(datetime.minute() * 60 + datetime.second());
|
|
|
|
entry.reset_age();
|
2021-11-01 18:51:06 -04:00
|
|
|
if (entry.hits==0)
|
|
|
|
{
|
|
|
|
entry.amp = message->amp;
|
|
|
|
} else {
|
2021-11-06 06:20:39 -04:00
|
|
|
entry.amp = ((entry.amp*15)+message->amp)>>4;
|
2021-11-01 18:51:06 -04:00
|
|
|
}
|
2017-08-17 07:56:47 -04:00
|
|
|
str_timestamp = to_string_datetime(datetime, HMS);
|
|
|
|
entry.set_time_string(str_timestamp);
|
2017-11-08 15:23:06 -05:00
|
|
|
|
2017-08-16 05:02:57 -04:00
|
|
|
entry.inc_hit();
|
2018-03-27 07:52:07 -04:00
|
|
|
logentry += to_string_hex_array(frame.get_raw_data(), 14) + " ";
|
|
|
|
logentry += "ICAO:" + to_string_hex(ICAO_address, 6) + " ";
|
|
|
|
|
|
|
|
if (frame.get_DF() == DF_ADSB) {
|
2017-08-17 07:56:47 -04:00
|
|
|
uint8_t msg_type = frame.get_msg_type();
|
2020-07-24 17:09:21 -04:00
|
|
|
uint8_t msg_sub = frame.get_msg_sub();
|
2017-08-17 07:56:47 -04:00
|
|
|
uint8_t * raw_data = frame.get_raw_data();
|
|
|
|
|
2021-10-11 05:14:16 -04:00
|
|
|
// 4: // surveillance, altitude reply
|
2021-06-19 18:41:06 -04:00
|
|
|
if ((msg_type >= AIRCRAFT_ID_L) && (msg_type <= AIRCRAFT_ID_H)) {
|
2017-08-16 05:02:57 -04:00
|
|
|
callsign = decode_frame_id(frame);
|
|
|
|
entry.set_callsign(callsign);
|
2017-11-08 15:23:06 -05:00
|
|
|
logentry+=callsign+" ";
|
2021-06-19 18:41:06 -04:00
|
|
|
}
|
2021-10-11 05:14:16 -04:00
|
|
|
// 9:
|
|
|
|
// 18: { // Extended squitter/non-transponder
|
|
|
|
// 21: // Comm-B, identity reply
|
|
|
|
// 20: // Comm-B, altitude reply
|
2021-06-19 18:41:06 -04:00
|
|
|
else if (((msg_type >= AIRBORNE_POS_BARO_L) && (msg_type <= AIRBORNE_POS_BARO_H)) ||
|
|
|
|
((msg_type >= AIRBORNE_POS_GPS_L) && (msg_type <= AIRBORNE_POS_GPS_H))) {
|
2017-08-17 07:56:47 -04:00
|
|
|
entry.set_frame_pos(frame, raw_data[6] & 4);
|
|
|
|
|
|
|
|
if (entry.pos.valid) {
|
2020-08-11 12:26:36 -04:00
|
|
|
str_info = "Alt:" + to_string_dec_int(entry.pos.altitude) +
|
2021-06-23 18:52:15 -04:00
|
|
|
" Lat:" + to_string_decimal(entry.pos.latitude, 2) +
|
|
|
|
" Lon:" + to_string_decimal(entry.pos.longitude, 2);
|
2021-06-23 14:54:34 -04:00
|
|
|
|
|
|
|
// printing the coordinates in the log file with more
|
|
|
|
// resolution, as we are not constrained by screen
|
|
|
|
// real estate there:
|
|
|
|
|
|
|
|
std::string log_info = "Alt:" + to_string_dec_int(entry.pos.altitude) +
|
2021-06-23 18:52:15 -04:00
|
|
|
" Lat:" + to_string_decimal(entry.pos.latitude, 7) +
|
|
|
|
" Lon:" + to_string_decimal(entry.pos.longitude, 7);
|
2021-06-23 14:54:34 -04:00
|
|
|
|
2017-08-27 16:03:17 -04:00
|
|
|
entry.set_info_string(str_info);
|
2021-06-23 14:54:34 -04:00
|
|
|
logentry+=log_info + " ";
|
2017-11-08 15:23:06 -05:00
|
|
|
|
2017-08-17 07:56:47 -04:00
|
|
|
}
|
2021-06-19 18:41:06 -04:00
|
|
|
} else if(msg_type == AIRBORNE_VEL && msg_sub >= VEL_GND_SUBSONIC && msg_sub <= VEL_AIR_SUPERSONIC){
|
2020-07-24 17:09:21 -04:00
|
|
|
entry.set_frame_velo(frame);
|
2020-08-10 23:55:20 -04:00
|
|
|
logentry += "Type:" + to_string_dec_uint(msg_sub) +
|
|
|
|
" Hdg:" + to_string_dec_uint(entry.velo.heading) +
|
|
|
|
" Spd: "+ to_string_dec_int(entry.velo.speed);
|
2021-06-23 18:52:15 -04:00
|
|
|
|
2017-07-14 05:02:21 -04:00
|
|
|
}
|
|
|
|
}
|
2021-11-01 16:37:27 -04:00
|
|
|
|
2021-10-11 05:14:16 -04:00
|
|
|
replace_entry(entry);
|
2018-03-27 07:52:07 -04:00
|
|
|
|
2017-11-08 15:23:06 -05:00
|
|
|
logger = std::make_unique<ADSBLogger>();
|
2018-03-27 07:52:07 -04:00
|
|
|
if (logger) {
|
2017-11-08 15:23:06 -05:00
|
|
|
logger->append(u"adsb.txt");
|
|
|
|
// will log each frame in format:
|
|
|
|
// 20171103100227 8DADBEEFDEADBEEFDEADBEEFDEADBEEF ICAO:nnnnnn callsign Alt:nnnnnn Latnnn.nn Lonnnn.nn
|
|
|
|
logger->log_str(logentry);
|
|
|
|
}
|
2017-07-14 05:02:21 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-27 16:03:17 -04:00
|
|
|
void ADSBRxView::on_tick_second() {
|
2018-03-27 07:52:07 -04:00
|
|
|
// Decay and refresh if needed
|
2017-08-27 16:03:17 -04:00
|
|
|
for (auto& entry : recent) {
|
|
|
|
entry.inc_age();
|
2018-03-27 07:52:07 -04:00
|
|
|
|
|
|
|
if (details_view) {
|
2021-10-15 09:26:33 -04:00
|
|
|
if (send_updates && (entry.key() == detailed_entry_key)) // Check if the ICAO address match
|
2018-03-27 07:52:07 -04:00
|
|
|
details_view->update(entry);
|
2021-10-11 05:14:16 -04:00
|
|
|
}
|
2017-08-27 16:03:17 -04:00
|
|
|
}
|
2021-10-11 05:14:16 -04:00
|
|
|
|
|
|
|
// Sort the list if it is being displayed
|
|
|
|
if (!send_updates) {
|
|
|
|
sort_entries_by_state();
|
|
|
|
recent_entries_view.set_dirty();
|
|
|
|
}
|
2017-08-27 16:03:17 -04:00
|
|
|
}
|
|
|
|
|
2017-08-27 17:06:11 -04:00
|
|
|
ADSBRxView::ADSBRxView(NavigationView& nav) {
|
2017-07-23 07:20:32 -04:00
|
|
|
baseband::run_image(portapack::spi_flash::image_tag_adsb_rx);
|
2017-07-14 05:02:21 -04:00
|
|
|
add_children({
|
2017-08-16 05:02:57 -04:00
|
|
|
&labels,
|
|
|
|
&field_lna,
|
|
|
|
&field_vga,
|
2017-12-08 16:46:16 -05:00
|
|
|
&field_rf_amp,
|
|
|
|
&rssi,
|
2017-07-23 07:20:32 -04:00
|
|
|
&recent_entries_view
|
2017-07-14 05:02:21 -04:00
|
|
|
});
|
|
|
|
|
2017-08-28 02:05:31 -04:00
|
|
|
recent_entries_view.set_parent_rect({ 0, 16, 240, 272 });
|
2017-08-27 17:06:11 -04:00
|
|
|
recent_entries_view.on_select = [this, &nav](const AircraftRecentEntry& entry) {
|
2017-08-28 02:05:31 -04:00
|
|
|
detailed_entry_key = entry.key();
|
|
|
|
details_view = nav.push<ADSBRxDetailsView>(
|
|
|
|
entry,
|
|
|
|
[this]() {
|
|
|
|
send_updates = false;
|
|
|
|
});
|
|
|
|
send_updates = true;
|
2017-08-16 05:02:57 -04:00
|
|
|
};
|
2017-07-23 07:20:32 -04:00
|
|
|
|
2017-08-27 16:03:17 -04:00
|
|
|
signal_token_tick_second = rtc_time::signal_tick_second += [this]() {
|
|
|
|
on_tick_second();
|
|
|
|
};
|
|
|
|
|
2021-10-29 11:59:52 -04:00
|
|
|
prevFreq = receiver_model.tuning_frequency();
|
2021-10-11 05:14:16 -04:00
|
|
|
|
2017-07-23 07:20:32 -04:00
|
|
|
baseband::set_adsb();
|
|
|
|
|
|
|
|
receiver_model.set_tuning_frequency(1090000000);
|
2017-08-16 05:02:57 -04:00
|
|
|
field_lna.set_value(40);
|
|
|
|
field_vga.set_value(40);
|
2017-07-23 07:20:32 -04:00
|
|
|
receiver_model.set_modulation(ReceiverModel::Mode::SpectrumAnalysis);
|
|
|
|
receiver_model.set_sampling_rate(2000000);
|
|
|
|
receiver_model.set_baseband_bandwidth(2500000);
|
|
|
|
receiver_model.enable();
|
2017-07-14 05:02:21 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
} /* namespace ui */
|