1
0
Fork 0
mirror of https://github.com/iNavFlight/inav.git synced 2025-07-25 17:25:18 +03:00

Made it more boring

This commit is contained in:
Darren Lines 2024-05-21 21:41:30 +01:00
parent 5e85fe07b1
commit 946241d995
4 changed files with 4 additions and 4 deletions

View file

@ -3681,7 +3681,7 @@ groups:
max: 5000 max: 5000
- name: osd_highlight_djis_missing_font_symbols - name: osd_highlight_djis_missing_font_symbols
description: Show question marks where there is no symbol in the DJI font to represent the INAV OSD element's symbol. When off, blank spaces will be used. Only relevent for DJICOMPAT modes. description: Show question marks where there is no symbol in the DJI font to represent the INAV OSD element's symbol. When off, blank spaces will be used. Only relevent for DJICOMPAT modes.
field: highlight_djis_fuckup field: highlight_djis_missing_characters
default_value: ON default_value: ON
type: bool type: bool
- name: PG_OSD_COMMON_CONFIG - name: PG_OSD_COMMON_CONFIG

View file

@ -705,7 +705,7 @@ uint8_t getDJICharacter(uint8_t ch, uint8_t page)
break; break;
} }
return (osdConfig()->highlight_djis_fuckup) ? '?' : SYM_BLANK; // Missing/not mapped character return (osdConfig()->highlight_djis_missing_characters) ? '?' : SYM_BLANK; // Missing/not mapped character
} }
#endif #endif

View file

@ -3875,7 +3875,7 @@ PG_RESET_TEMPLATE(osdConfig_t, osdConfig,
.airspeed_alarm_max = SETTING_OSD_AIRSPEED_ALARM_MAX_DEFAULT, .airspeed_alarm_max = SETTING_OSD_AIRSPEED_ALARM_MAX_DEFAULT,
#endif #endif
#ifndef DISABLE_MSP_DJI_COMPAT #ifndef DISABLE_MSP_DJI_COMPAT
.highlight_djis_fuckup = SETTING_OSD_HIGHLIGHT_DJIS_MISSING_FONT_SYMBOLS_DEFAULT, .highlight_djis_missing_characters = SETTING_OSD_HIGHLIGHT_DJIS_MISSING_FONT_SYMBOLS_DEFAULT,
#endif #endif
.video_system = SETTING_OSD_VIDEO_SYSTEM_DEFAULT, .video_system = SETTING_OSD_VIDEO_SYSTEM_DEFAULT,

View file

@ -458,7 +458,7 @@ typedef struct osdConfig_s {
uint8_t inav_to_pilot_logo_spacing; // The space between the INAV and pilot logos, if pilot logo is used. This number may be adjusted so that it fits the odd/even col width. uint8_t inav_to_pilot_logo_spacing; // The space between the INAV and pilot logos, if pilot logo is used. This number may be adjusted so that it fits the odd/even col width.
uint16_t arm_screen_display_time; // Length of time the arm screen is displayed uint16_t arm_screen_display_time; // Length of time the arm screen is displayed
#ifndef DISABLE_MSP_DJI_COMPAT #ifndef DISABLE_MSP_DJI_COMPAT
bool highlight_djis_fuckup; // If enabled, show question marks where there is no character in DJI's font to represent an OSD element symbol bool highlight_djis_missing_characters; // If enabled, show question marks where there is no character in DJI's font to represent an OSD element symbol
#endif #endif
#ifdef USE_ADSB #ifdef USE_ADSB
uint16_t adsb_distance_warning; // in metres uint16_t adsb_distance_warning; // in metres