The open source OpenXR runtime
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

d/wmr: Add PID of HP Reverb G2 Omnicept edition

The Omnicept edition has several additional sensors, but the base
functionality is identical to that of the Reverb G2.

Part-of: <https://gitlab.freedesktop.org/monado/monado/-/merge_requests/2395>

authored by

David Coles and committed by
Marge Bot
529aa5b0 8c16c8ff

+2
+1
src/xrt/drivers/wmr/wmr_common.h
··· 59 59 #define VR1000_PID 0x0367 60 60 #define REVERB_G1_PID 0x0c6a 61 61 #define REVERB_G2_PID 0x0580 62 + #define REVERB_G2_OMNICEPT_PID 0x0680 62 63 #define REVERB_G2_CONTROLLER_PID 0x066a /* On 0x045e Microsoft VID */ 63 64 64 65 #define LENOVO_VID 0x17ef
+1
src/xrt/drivers/wmr/wmr_prober.c
··· 85 85 switch (device->product_id) { 86 86 case REVERB_G1_PID: *out_hmd_type = WMR_HEADSET_REVERB_G1; return true; 87 87 case REVERB_G2_PID: *out_hmd_type = WMR_HEADSET_REVERB_G2; return true; 88 + case REVERB_G2_OMNICEPT_PID: *out_hmd_type = WMR_HEADSET_REVERB_G2; return true; 88 89 case VR1000_PID: *out_hmd_type = WMR_HEADSET_HP_VR1000; return true; 89 90 default: U_LOG_IFL_T(log_level, "No matching PID!"); return false; 90 91 }