| 625 | } |
| 626 | |
| 627 | static void cbForStateCoverClosed(u32 intType) |
| 628 | { |
| 629 | if (intType == 16) |
| 630 | { |
| 631 | executing->state = -1; |
| 632 | stateTimeout(); |
| 633 | return; |
| 634 | } |
| 635 | |
| 636 | if (intType & 1) |
| 637 | { |
| 638 | NumInternalRetry = 0; |
| 639 | stateCheckID(); |
| 640 | } |
| 641 | else |
| 642 | { |
| 643 | stateGettingError(); |
| 644 | } |
| 645 | } |
| 646 | |
| 647 | static void stateMotorStopped(void) |
| 648 | { |
nothing calls this directly
no test coverage detected