Skip to content

Commit

Permalink
fec: fix equipment type bitfield
Browse files Browse the repository at this point in the history
off by one bit
  • Loading branch information
cujomalainey committed Jan 30, 2022
1 parent 3ed7458 commit 18d662c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Profiles/Fec/DataPages/ANTPLUS_FecGeneralFeData.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#include <Profiles/Fec/ANTPLUS_FecPrivateDefines.h>

#define FETYPE_BYTE 1
#define FETYPE_MASK 0x0F
#define FETYPE_MASK 0x1F
#define ELAPSEDTIME_BYTE 2
#define DISTANCETRAVELED_BYTE 3
#define SPEED_LSB_BYTE 4
Expand Down

0 comments on commit 18d662c

Please sign in to comment.