MccFiniteStateMachine: compiled

This commit is contained in:
Timur A. Fatkhullin
2025-06-01 23:41:18 +03:00
parent f4bd1ceee1
commit e069ed84f0
2 changed files with 39 additions and 36 deletions

View File

@@ -48,7 +48,8 @@ struct ST2 {
struct ST1 {
static constexpr std::string_view ID = "ST1";
using transition_t = fsm::fsm_transition_table_t<std::pair<EV1, ST2>, std::pair<EV2, STN>>;
using transition_t =
fsm::fsm_transition_table_t<std::pair<EV1, ST2>, std::pair<EV2, STN>, std::pair<EV3, STN>, std::pair<EV3, STN>>;
};
// struct STN : fsm::MccFsmAbstractState {