mirror of
https://github.com/SemvdH/OBD2-car-display.git
synced 2025-12-16 12:41:05 +00:00
19 lines
245 B
C
19 lines
245 B
C
#include "statemachine.h"
|
|
|
|
state_t none_state =
|
|
{
|
|
.id = 0,
|
|
.on_enter = &__state_none,
|
|
.on_run = &__state_none,
|
|
.on_exit = &__state_none,
|
|
|
|
}
|
|
statemachine_t statemachine =
|
|
{
|
|
.current_state =
|
|
};
|
|
|
|
void statemachine_init()
|
|
{
|
|
|
|
} |