1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-19 14:25:20 +03:00

Add RC channel values to OSD

This commit is contained in:
jflyper 2019-09-04 05:41:41 +09:00
parent 37b059532f
commit d4b4e37f6f
4 changed files with 34 additions and 1 deletions

View file

@ -303,6 +303,10 @@ void pgResetFn_osdConfig(osdConfig_t *osdConfig)
}
osdConfig->rssi_dbm_alarm = 60;
osdConfig->gps_sats_show_hdop = false;
for (int i = 0; i < OSD_RCCHANNELS_COUNT; i++) {
osdConfig->rcChannels[i] = -1;
}
}
static void osdDrawLogo(int x, int y)