mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-26 17:55:30 +03:00
Make crosshairs visible even if accel is disabled
This commit is contained in:
parent
9053feb418
commit
af9e6a94b0
1 changed files with 2 additions and 1 deletions
|
@ -496,11 +496,11 @@ void osdDrawElements(void)
|
||||||
#endif
|
#endif
|
||||||
{
|
{
|
||||||
osdDrawSingleElement(OSD_ARTIFICIAL_HORIZON);
|
osdDrawSingleElement(OSD_ARTIFICIAL_HORIZON);
|
||||||
osdDrawSingleElement(OSD_CROSSHAIRS);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
osdDrawSingleElement(OSD_MAIN_BATT_VOLTAGE);
|
osdDrawSingleElement(OSD_MAIN_BATT_VOLTAGE);
|
||||||
osdDrawSingleElement(OSD_RSSI_VALUE);
|
osdDrawSingleElement(OSD_RSSI_VALUE);
|
||||||
|
osdDrawSingleElement(OSD_CROSSHAIRS);
|
||||||
osdDrawSingleElement(OSD_FLYTIME);
|
osdDrawSingleElement(OSD_FLYTIME);
|
||||||
osdDrawSingleElement(OSD_ONTIME);
|
osdDrawSingleElement(OSD_ONTIME);
|
||||||
osdDrawSingleElement(OSD_FLYMODE);
|
osdDrawSingleElement(OSD_FLYMODE);
|
||||||
|
@ -537,6 +537,7 @@ void pgResetFn_osdConfig(osdConfig_t *osdProfile)
|
||||||
{
|
{
|
||||||
osdProfile->item_pos[OSD_RSSI_VALUE] = OSD_POS(8, 1) | VISIBLE_FLAG;
|
osdProfile->item_pos[OSD_RSSI_VALUE] = OSD_POS(8, 1) | VISIBLE_FLAG;
|
||||||
osdProfile->item_pos[OSD_MAIN_BATT_VOLTAGE] = OSD_POS(12, 1) | VISIBLE_FLAG;
|
osdProfile->item_pos[OSD_MAIN_BATT_VOLTAGE] = OSD_POS(12, 1) | VISIBLE_FLAG;
|
||||||
|
osdProfile->item_pos[OSD_CROSSHAIRS] = OSD_POS(8, 6) | VISIBLE_FLAG;
|
||||||
osdProfile->item_pos[OSD_ARTIFICIAL_HORIZON] = OSD_POS(8, 6) | VISIBLE_FLAG;
|
osdProfile->item_pos[OSD_ARTIFICIAL_HORIZON] = OSD_POS(8, 6) | VISIBLE_FLAG;
|
||||||
osdProfile->item_pos[OSD_HORIZON_SIDEBARS] = OSD_POS(8, 6) | VISIBLE_FLAG;
|
osdProfile->item_pos[OSD_HORIZON_SIDEBARS] = OSD_POS(8, 6) | VISIBLE_FLAG;
|
||||||
osdProfile->item_pos[OSD_ONTIME] = OSD_POS(22, 1) | VISIBLE_FLAG;
|
osdProfile->item_pos[OSD_ONTIME] = OSD_POS(22, 1) | VISIBLE_FLAG;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue