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
Hello, for BDS 1,0 the following function (line 447):
static boolean extractChangeFlag(byte[] message) { return ((message[5] >>> 5) & 0x01) == 1; }
decode the same bit as this one (line 431):
static boolean extractPhaseOverlayExtendedSquitterCapability(byte[] message) { return ((message[5] >>> 5) & 0x01) == 1; }
I'm wondering if there is a typo in extractChangeFlag() ?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello, for BDS 1,0 the following function (line 447):
decode the same bit as this one (line 431):
I'm wondering if there is a typo in extractChangeFlag() ?
The text was updated successfully, but these errors were encountered: