(self, ss, is_start)
| 233 | self.state = 'ATR' if has_clk else None |
| 234 | |
| 235 | def handle_command(self, ss, is_start): |
| 236 | if is_start: |
| 237 | self.flush_queued() |
| 238 | key = '{}_SYM'.format('START' if is_start else 'STOP') |
| 239 | cls, texts = self.lookup_proto_ann_txt(key, {}) |
| 240 | self.putx(ss, ss, cls, texts) |
| 241 | self.bits = [] |
| 242 | self.state = 'CMD' if is_start else 'DATA' |
| 243 | |
| 244 | def command_check(self, ctrl, addr, data): |
| 245 | '''Interpret CTRL/ADDR/DATA command entry.''' |
no test coverage detected