-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
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
Any interest in a COBS Encoder/Decoder? #21
Comments
Sounds good to me, COBS is very useful. We could prototype its use in Glasgow, perhaps. |
Great, thank you! I'll see if I can have a PR ready in the next few weeks. |
I looked at your encoder and I have a couple of tips regarding improving throughput. If I'm reading it right, your encoder will run at a fixed 50% throughput (not counting flow control), because it'll sit half the time in the For inspiration, here is a COBS encoder I wrote in Migen that I've been planning to eventually port to Amaranth. In my implementation, a group is a set of contiguous unescaped bytes. The The |
Hello! I wanted to ask if there was any interest from the maintainers in adding a COBS encoder and decoder to this library.
I've been poking around with a very basic verison at fischermoseley/cobs that is absolutely in need of further development and definitely not ready for a PR - but if it would be an appropriate addition to amaranth-stdio I'm happy to develop it towards such. Otherwise I can keep it as a standalone project. No pressure either way, of course.
The text was updated successfully, but these errors were encountered: