Skip to content

Commit

Permalink
Update documentation of FSM
Browse files Browse the repository at this point in the history
  • Loading branch information
t0mpr1c3 committed Mar 9, 2024
1 parent c6c1b2a commit bad4c29
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions doc/finite_state_machine.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,10 @@ A tabular representation of state transitions follows.

| Transition | Function / condition |
--: | :--
`Init -> Test` | `Tester::startTest()`
`Ready -> Test` | `Tester::startTest()`
`Init -> Test` | `Tester::startTest()`
`Ready -> Test` | `Tester::startTest()`
`Test -> Init` | `Tester::quitCmd()`
`Knit -> Init` | `Knitter::quitCmd()`
`Init -> Ready` | `Knitter::isReady()`
`Ready -> Knit` | `Knitter::startKnitting()`
`Knit -> Ready` | `m_workedOnLine && m_lastLineFlag`

0 comments on commit bad4c29

Please sign in to comment.