steering-wheel-stm/Core/Src/state.c

9 lines
175 B
C
Raw Normal View History

2022-05-27 17:20:16 +02:00
#include "state.h"
STWState stw_state;
2022-05-28 02:00:50 +02:00
void state_init() {
stw_state.view = VIEW_MISSION_SELECT;
stw_state.view_state.mission_select.selection = MISSION_ACCELERATION;
2022-05-29 00:47:46 +02:00
}