| 538 | } |
| 539 | |
| 540 | static void cbForStateCheckID2(u32 intType) |
| 541 | { |
| 542 | if (intType == 16) |
| 543 | { |
| 544 | executing->state = -1; |
| 545 | stateTimeout(); |
| 546 | return; |
| 547 | } |
| 548 | |
| 549 | if (intType & 1) |
| 550 | { |
| 551 | NumInternalRetry = 0; |
| 552 | |
| 553 | stateReadingFST(); |
| 554 | } |
| 555 | else |
| 556 | { |
| 557 | stateGettingError(); |
| 558 | } |
| 559 | } |
| 560 | |
| 561 | static void cbForStateCheckID3(u32 intType) |
| 562 | { |
nothing calls this directly
no test coverage detected