Closed
Description
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() ?
Metadata
Metadata
Assignees
Labels
No labels
Activity