cobs-python
cobs-python copied to clipboard
Consistent Overhead Byte Stuffing — Python implementation
Even though name/version exist in pyproject.toml, I had to add them to setup.py for python3.10 to be able to generate correct egg/wheel packages locally and install as "cobs" not as...
Whenever you call `.cast()` on a `memoryview` in PyPy, it will perform two allocations per iteration in order to map the underlying storage to the requested type. This happens even...
Avoid building C optimised version if running on PYPY and use the plain python implementation 1. pypy have a penalty cost at the python to C interface 2. I found...
In my application, I decode sometimes very large (megabytes) COBS packets while also handling soft-realtime IO operations where a missed deadline means an application-level failure. I would be able to...