1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-09-27 15:26:33 -04:00

Merge pull request #1528 from srcejon/fix_1527

RadioSonde: Fix plotting of heading
This commit is contained in:
Edouard Griffiths 2022-12-05 01:29:22 +01:00 committed by GitHub
commit 92bd4213a3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -738,7 +738,7 @@ float RadiosondeGUI::getData(RadiosondeSettings::ChartData dataType, RadiosondeD
data = message->m_verticalRate;
break;
case RadiosondeSettings::HEADING:
data = message->m_speed;
data = message->m_heading;
break;
case RadiosondeSettings::BATTERY_VOLTAGE:
data = message->m_batteryVoltage;