uart: fix (another) bit-slicing bug in StreamUnpacker

This commit is contained in:
Fischer Moseley 2026-03-08 21:14:42 -06:00
parent 3b3ff35fdd
commit 6888b4ded5
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ class StreamUnpacker(wiring.Component):
m.d.sync += last.eq(self.sink.last)
m.d.sync += idle.eq(0)
m.d.sync += self.source.data.eq(self.sink.data[:7])
m.d.sync += self.source.data.eq(self.sink.data[:8])
m.d.sync += self.source.valid.eq(1)
m.d.sync += count.eq(0)