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

8 lines
174 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;
}