The LEDs on the back of the headstrap on CV1 are type 2.
@@ -44,6 +44,8 @@ bool decode_position_info(pkt_position_info* p, const unsigned char* buffer, int
p->index = READ8;
SKIP8;
p->num = READ8;
+ SKIP8;
+ p->type = READ8;
return true;
}
@@ -111,6 +111,7 @@ typedef struct {
int16_t dir_z;
uint8_t index;
uint8_t num;
+ uint8_t type;
} pkt_position_info;
typedef struct {