Skip to content

Commit 9ffaf56

Browse files
committed
pbio/sys/hmi_virtual: Don't show closing credits.
This is only needed on EV3 except when we need to debug the shutdown animation, which is rare.
1 parent ef7aae3 commit 9ffaf56

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

lib/pbio/sys/hmi_virtual.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -142,9 +142,9 @@ void pbsys_hmi_init(void) {
142142
}
143143

144144
void pbsys_hmi_deinit(void) {
145-
static pbio_os_process_t shutdown_animation_process;
146-
pbio_busy_count_up();
147-
pbio_os_process_start(&shutdown_animation_process, pbsys_hmi_ev3_ui_closing_credits, NULL);
145+
// For most virtual hub tests, we don't want to wait on the closing
146+
// credits, so we leave this empty. The EV3 variant of this function can be
147+
// called here if the animation needs debugging.
148148
}
149149

150150
void pbsys_hmi_stop_animation(void) {

0 commit comments

Comments
 (0)