We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for connecting Wishbone UARTs to a TCP socket. This gives several benefits:
gdb
Drawbacks to this are:
An alternative is to use openpty(3) for each serial port. This also gives several benefits:
openpty(3)
Drawbacks to openpty(3) are:
Overall I'm more inclined to go with the TCP approach simply because of the cross-platform compatibility issue.
The text was updated successfully, but these errors were encountered:
Can we just support both?
Sorry, something went wrong.
No branches or pull requests
Add support for connecting Wishbone UARTs to a TCP socket. This gives several benefits:
gdb
to attach to a gdbserver that's normally exposed over serialDrawbacks to this are:
An alternative is to use
openpty(3)
for each serial port. This also gives several benefits:Drawbacks to
openpty(3)
are:openpty(3)
is not part of a standard, and is a BSD-ism. Therefore it does not exist on platforms such as Windows.Overall I'm more inclined to go with the TCP approach simply because of the cross-platform compatibility issue.
The text was updated successfully, but these errors were encountered: