2026-01-22 10:38 AM
Hello,
I'm using MEMS Studio to log data from a multi-sensor glasses platform for biomarker extraction research. My sensor configuration includes:
The CSV export includes a new_data column containing hex values (e.g., 0x08, 0x10, 0x18, 0x20, 0x400). I understand this is a bitmask indicating which sensor(s) have new data in each row, but I cannot find official documentation for the bit assignments.
Through empirical analysis (checking which sensor columns actually change when each bit is set), I determined:
Bit Mask Sensor Correlation
| Bit 3 | 0x08 | Accelerometer | 96.6% |
| Bit 4 | 0x10 | Gyroscope | 96.6% |
| Bit 5 | 0x20 | Magnetometer | 99.9% |
| Bit 6 | 0x40 | Pressure | — |
| Bit 10 | 0x400 | vAFE | — |
Questions:
Thank you for any guidance!