Skip to content

Commit

Permalink
Fix build.
Browse files Browse the repository at this point in the history
  • Loading branch information
philmoz committed Sep 12, 2024
1 parent 2ca78ec commit e0c08b8
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions radio/src/gui/128x64/radio_setup.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -135,9 +135,7 @@ PACK(struct ExpandState {
uint8_t imu:1;
#endif
uint8_t alarms:1;
#if defined(BACKLIGHT_GPIO) || defined(OLED_SCREEN)
uint8_t backlight:1;
#endif
#if defined(GPS)
uint8_t gps:1;
#endif
Expand All @@ -158,9 +156,7 @@ static uint8_t IMU_ROW(uint8_t value) { return expandState.imu ? value : HIDDEN_

static uint8_t ALARMS_ROW(uint8_t value) { return expandState.alarms ? value : HIDDEN_ROW; }

#if defined(BACKLIGHT_GPIO) || defined(OLED_SCREEN)
static uint8_t BACKLIGHT_ROW(uint8_t value) { return expandState.backlight ? value : HIDDEN_ROW; }
#endif

#if defined(GPS)
static uint8_t GPS_ROW(uint8_t value) { return expandState.gps ? value : HIDDEN_ROW; }
Expand Down

0 comments on commit e0c08b8

Please sign in to comment.