diff options
| -rw-r--r-- | firmware/export/config.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/firmware/export/config.h b/firmware/export/config.h index 367c392..594b4f6 100644 --- a/firmware/export/config.h +++ b/firmware/export/config.h @@ -559,11 +559,16 @@ Lyre prototype 1 */ #endif /* deactivate fading in bootloader */ -#if defined(BOOTLOADER) +#ifdef BOOTLOADER #undef CONFIG_BACKLIGHT_FADING #define CONFIG_BACKLIGHT_FADING BACKLIGHT_NO_FADING #endif +#ifdef SIMULATOR +#undef CONFIG_BACKLIGHT_FADING +#define CONFIG_BACKLIGHT_FADING BACKLIGHT_FADING_SW_SETTING +#endif + /* determine which setting/manual text to use */ #if (CONFIG_BACKLIGHT_FADING == BACKLIGHT_FADING_PWM) |