mirror of
https://github.com/eried/portapack-mayhem.git
synced 2025-08-07 22:22:21 -04:00
Fix Issue 88, Wrong Longitude in ADSB RX (#242)
This commit is contained in:
parent
aa77657092
commit
9f587e6085
3 changed files with 18 additions and 9 deletions
|
@ -220,7 +220,7 @@ void ADSBRxView::on_frame(const ADSBFrameMessage * message) {
|
|||
callsign = decode_frame_id(frame);
|
||||
entry.set_callsign(callsign);
|
||||
logentry+=callsign+" ";
|
||||
} else if ((msg_type >= 9) && (msg_type <= 18)) {
|
||||
} else if (((msg_type >= 9) && (msg_type <= 18)) || ((msg_type >= 20) && (msg_type <= 22))) {
|
||||
entry.set_frame_pos(frame, raw_data[6] & 4);
|
||||
|
||||
if (entry.pos.valid) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue