From c5c5dccd0f00dfd4137f3aa3daae8c671a5ab598 Mon Sep 17 00:00:00 2001 From: borisbstyle Date: Tue, 24 Jan 2017 12:45:45 +0100 Subject: [PATCH] Change OSD defaults --- src/main/io/osd.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/io/osd.c b/src/main/io/osd.c index fc9af8d1b..d99a113f4 100755 --- a/src/main/io/osd.c +++ b/src/main/io/osd.c @@ -425,7 +425,7 @@ void osdDrawElements(void) void osdResetConfig(osd_profile_t *osdProfile) { - osdProfile->item_pos[OSD_RSSI_VALUE] = OSD_POS(22, 0) | VISIBLE_FLAG; + osdProfile->item_pos[OSD_RSSI_VALUE] = OSD_POS(22, 0); osdProfile->item_pos[OSD_MAIN_BATT_VOLTAGE] = OSD_POS(12, 0) | 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; @@ -440,9 +440,9 @@ void osdResetConfig(osd_profile_t *osdProfile) osdProfile->item_pos[OSD_GPS_SPEED] = OSD_POS(2, 2); osdProfile->item_pos[OSD_GPS_SATS] = OSD_POS(2, 12); osdProfile->item_pos[OSD_ALTITUDE] = OSD_POS(1, 5); - osdProfile->item_pos[OSD_ROLL_PIDS] = OSD_POS(2, 10) | VISIBLE_FLAG; - osdProfile->item_pos[OSD_PITCH_PIDS] = OSD_POS(2, 11) | VISIBLE_FLAG; - osdProfile->item_pos[OSD_YAW_PIDS] = OSD_POS(2, 12) | VISIBLE_FLAG; + osdProfile->item_pos[OSD_ROLL_PIDS] = OSD_POS(2, 10); + osdProfile->item_pos[OSD_PITCH_PIDS] = OSD_POS(2, 11); + osdProfile->item_pos[OSD_YAW_PIDS] = OSD_POS(2, 12); osdProfile->item_pos[OSD_POWER] = OSD_POS(15, 1); osdProfile->rssi_alarm = 20; -- 2.11.4.GIT