Open lvalkenbergECTRL opened 2 months ago
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() ?
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() ?