Replies: 1 comment 1 reply
-
@jp-bennett - thoughts? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi community,
For checking the
crc16_ccitt()
, I think it uses a half-byte technique to achieve the balance between performance and space.I have done optimization of CRC32 in sse2neon which uses a half-byte LUT that only uses 64 bytes.
For
crc16_ccitt()
, the LUT just needs 32 bytes, and I think it is feasible on many embedded systems, and I think I can create a PR to optimize this.Before I begin, I would like to ask whether there are any concerns
crc16_ccitt()
uses only bit operations.Beta Was this translation helpful? Give feedback.
All reactions