m1n1.fw.afk: Fix TX/RX_BUFSIZE confusion

Signed-off-by: Martin Povišer <povik@protonmail.com>
This commit is contained in:
Martin Povišer 2022-10-05 19:08:12 +02:00 committed by Hector Martin
parent ce517b10a3
commit c5e80f0d5a

View file

@ -88,7 +88,7 @@ class EPICService:
self.log(f"Init: {props}")
self.props = props
self.rxbuf, self.rxbuf_dva = self.ep.asc.ioalloc(self.RX_BUFSIZE)
self.txbuf, self.txbuf_dva = self.ep.asc.ioalloc(self.RX_BUFSIZE)
self.txbuf, self.txbuf_dva = self.ep.asc.ioalloc(self.TX_BUFSIZE)
self.ready = True
def wait(self):