Skip to content

Commit

Permalink
Reduce the demodulation length properly when we see a 56-bit DF.
Browse files Browse the repository at this point in the history
  • Loading branch information
mutability committed Jan 22, 2015
1 parent d76b894 commit dc8891e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion demod_2400.c
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ void demodulate2400(uint16_t *m, uint32_t mlen) {
if (i == 0) {
switch (msg[0] >> 3) {
case 0: case 4: case 5: case 11:
bytelen = MODES_LONG_MSG_BYTES; break;
bytelen = MODES_SHORT_MSG_BYTES; break;

case 16: case 17: case 18: case 20: case 21: case 24:
break;
Expand Down

0 comments on commit dc8891e

Please sign in to comment.