blob: ec17e56857482089b1fda4001c035c94bafcc639 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#include "../../../common/src/Core/fsm.c"
extern char * gui_last_fsm_states[];
extern int * gui_last_fsm_states_timestamps[];
void fsm_state_switched(char * new_state) {
usart_debug_puts("FSM: ");
usart_debug_puts_no_header(new_state);
usart_debug_puts_no_header("\r\n");
for (int i = 8; i >= 0; i--) {
gui_last_fsm_states[i + 1] = gui_last_fsm_states[i];
gui_last_fsm_states_timestamps[i + 1] = gui_last_fsm_states_timestamps[i];
}
time_t now = time(NULL);
struct tm *t = gmtime(&now);
gui_last_fsm_states[0] = new_state;
gui_last_fsm_states_timestamps[0] = t->tm_hour * 10000 + t->tm_min * 100 + t->tm_sec;
}
|