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
When, say, a record length is 10, RDWs will look like this: Big-endian: 00 0A 00 00 Little-endian: 00 00 0A 00
00 0A 00 00
00 00 0A 00
But sometimes we encounter: Big-endian: 00 00 00 0A Little-endian: 0A 00 00 00
00 00 00 0A
0A 00 00 00
Add support for these 'twisted' headers by
The text was updated successfully, but these errors were encountered:
#430 Add support for 'twisted' RDW headers.
ebe07c7
#430 Update README
8af6cde
b3fe7f4
7522582
yruslan
No branches or pull requests
Background
When, say, a record length is 10, RDWs will look like this:
Big-endian:
00 0A 00 00
Little-endian:
00 00 0A 00
But sometimes we encounter:
Big-endian:
00 00 00 0A
Little-endian:
0A 00 00 00
Feature
Add support for these 'twisted' headers by
The text was updated successfully, but these errors were encountered: