2023-01-15 22:40:40 +01:00
|
|
|
#include <iostream>
|
2023-01-16 03:04:40 +01:00
|
|
|
#include "lfr_state_machine.h"
|
2023-01-16 03:34:25 +01:00
|
|
|
#include "lfr_states.h"
|
2023-01-15 22:40:40 +01:00
|
|
|
|
2023-01-16 03:57:23 +01:00
|
|
|
|
|
|
|
|
2023-01-15 22:40:40 +01:00
|
|
|
int main(void)
|
|
|
|
{
|
2023-01-16 03:04:40 +01:00
|
|
|
std::cout << "started central" << std::endl;
|
|
|
|
// Init State Machine;
|
|
|
|
std::cout << "create State Machine" << std::endl;
|
2023-01-16 06:37:39 +01:00
|
|
|
LFR_StateMachine stateMachine;
|
2023-01-15 22:40:40 +01:00
|
|
|
return 0;
|
|
|
|
}
|