1
0
forked from me/IronOS

Bootup logo settings (#1241)

Adds ability to adjust the time shown for the bootup logo.
This commit is contained in:
discip
2022-04-02 03:39:14 +02:00
committed by GitHub
parent 62dd2abf12
commit 0b8192b690
42 changed files with 750 additions and 1013 deletions

View File

@@ -49,9 +49,10 @@ enum SettingsOptions {
PDNegTimeout = 32, // PD timeout in 100ms steps
OLEDInversion = 33, // Invert the colours on the display
OLEDBrightness = 34, // Brightness for the OLED display
LOGOTime = 35, // Duration the logo will be displayed for
//
SettingsOptionsLength = 35, //
SettingsOptionsLength = 36, //
};
typedef enum {

View File

@@ -63,6 +63,7 @@ enum class SettingsItemIndex : uint8_t {
LanguageSwitch,
Brightness,
ColourInversion,
LOGOTime,
NUM_ITEMS,
};