Result for a single lane.
| 87 | |
| 88 | @dataclass |
| 89 | class LaneResult: |
| 90 | """Result for a single lane.""" |
| 91 | |
| 92 | lane: int |
| 93 | led_count: int # LED count for this specific lane |
| 94 | pin: int |
| 95 | passed: bool |
| 96 | bit_errors: int |
| 97 | timing: str # "ok", "slow", "fast", "unstable" |
| 98 | expected_bytes: int | None = None |
| 99 | received_bytes: int | None = None |
| 100 | |
| 101 | |
| 102 | @dataclass |