You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for making this repo, I'm interested in using the usb_serial(2) port in my homebrew 8 bit retro computer project
I've one doubt though:
While the serial code can signal to can accept the byte I want to send from the device to the host ( send_ready )
I don't see any way to signal whether the device can accept received bytes, as my 8 bit computer is slower than the USB connection and is not always polling the port, if there a way to implement a input wire to flag the host it's allowed to send?
The text was updated successfully, but these errors were encountered:
A simple way is to add the backpressure signal around line 239 of usbfs_transaction.v.
If your SOC side is unable to accept the data, return PID_NAK instead of PID_ACK.
Thanks for making this repo, I'm interested in using the usb_serial(2) port in my homebrew 8 bit retro computer project
I've one doubt though:
While the serial code can signal to can accept the byte I want to send from the device to the host ( send_ready )
I don't see any way to signal whether the device can accept received bytes, as my 8 bit computer is slower than the USB connection and is not always polling the port, if there a way to implement a input wire to flag the host it's allowed to send?
The text was updated successfully, but these errors were encountered: