Tagged Questions
2
votes
2answers
154 views
Constructs for wrapping a hardware state machine
I am using a piece of hardware with a well defined C API. The hardware is stateful, with the relevant API calls needing to be in the correct order for the hardware to work properly. The API calls ...
3
votes
2answers
196 views
How do I reuse a state machine in a slightly different way?
Problem
I have a big state machine. The design requirements of the project have changed such that I need to re-use this state machine in another place. All the states remain the same in this new ...
8
votes
4answers
310 views
How can a child state machine relinquish control back to the parent state machine?
My top level state machine has some states and edges. I will call this the parent state machine.
A ----> B ----> C
Any state within the parent state machine can be a state machine too. I will ...