mirror of
https://gitlab.freedesktop.org/monado/monado.git
synced 2025-01-01 12:46:12 +00:00
d/vive: Silence warnings from when the camera is running
This commit is contained in:
parent
91db53572b
commit
407461fd4f
|
@ -496,6 +496,16 @@ _decode_pulse_report(struct vive_device *d, const void *buffer)
|
|||
continue;
|
||||
}
|
||||
|
||||
if (sensor_id == 0xfd) {
|
||||
/* TODO: handle camera sync timestamp */
|
||||
continue;
|
||||
}
|
||||
|
||||
if (sensor_id == 0xfb) {
|
||||
/* TODO: Only turns on when the camera is running but not every frame. */
|
||||
continue;
|
||||
}
|
||||
|
||||
if (sensor_id > 31) {
|
||||
VIVE_ERROR(d, "Unexpected sensor id: %04x\n", sensor_id);
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue