/* * printable.cpp * * Created on: Aug 30, 2023 * Author: Dario */ #include #include #include #include #include #include #include extern CAN_HandleTypeDef hcan1; namespace sta { namespace tacos { void onStatemachineInit() { } void onManagerInit() { // ###### Register different threads for different states here. ###### // The dummy task runs for state 0. Manager::instance()->registerThread(std::make_shared("CAN test", 0x123), {ALL_STATES}); STA_DEBUG_PRINTF("The answer to everything is %d", 42); STA_DEBUG_HEAP_STATS(); } } // namespace tacos } // namespace sta