summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--firmware/2lib/include/2api.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/firmware/2lib/include/2api.h b/firmware/2lib/include/2api.h
index d932dbe0..fbbb80eb 100644
--- a/firmware/2lib/include/2api.h
+++ b/firmware/2lib/include/2api.h
@@ -1145,7 +1145,11 @@ vb2_error_t vb2ex_ec_battery_cutoff(void);
/* Screens. */
enum vb2_screen {
/* Blank screen */
- VB2_SCREEN_BLANK = 0,
+ VB2_SCREEN_BLANK = 0x0,
+ /* Wait screen for EC sync and AUXFW sync */
+ VB2_SCREEN_FIRMWARE_SYNC = 0x10,
+ /* Wait screen for touchpad sync */
+ VB2_SCREEN_TOUCHPAD_SYNC = 0x11,
};
/**