1
0
Fork 0
mirror of https://github.com/betaflight/betaflight-configurator.git synced 2025-07-25 01:05:15 +03:00

Merge pull request #701 from McGiverGim/bf-use_two_symbols_num_satellites

Fix the GPS image in OSD to use two symbols
This commit is contained in:
Michael Keller 2017-10-27 00:10:25 +13:00 committed by GitHub
commit c2850e4323

View file

@ -19,7 +19,8 @@ SYM.AMP = 0x9A;
SYM.MAH = 0x07;
SYM.METRE = 0xC;
SYM.FEET = 0xF;
SYM.GPS_SAT = 0x1F;
SYM.GPS_SAT_L = 0x1E;
SYM.GPS_SAT_R = 0x1F;
SYM.PB_START = 0x8A;
SYM.PB_FULL = 0x8B;
SYM.PB_EMPTY = 0x8D;
@ -440,7 +441,7 @@ OSD.constants = {
desc: 'osdDescElementGPSSats',
default_position: -1,
positionable: true,
preview: FONT.symbol(SYM.GPS_SAT) + '14'
preview: FONT.symbol(SYM.GPS_SAT_L) + FONT.symbol(SYM.GPS_SAT_R) + '14'
},
GPS_LON: {
name: 'GPS_LON',