Search found 2 matches

by gallsoft
Mon Mar 19, 2018 5:48 am
Forum: Developer's Forum for macOS
Topic: SpaceTraveler support using IOKit
Replies: 8
Views: 108220

Re: SpaceTraveler support using IOKit

Hi gallsoft, The SpaceMouse Wireless has the same data scheme in the USB reports as other recent devices. See this post for the format of 7- and 13-byte reports. Perhaps your code only caters for 7-byte report packets. We have a concatenation of all 6 DOFs in a longer (13 bytes) packet. That is gre...
by gallsoft
Sat Mar 17, 2018 1:11 am
Forum: Developer's Forum for macOS
Topic: SpaceTraveler support using IOKit
Replies: 8
Views: 108220

Re: IOKit

For our SpaceNavigator, the LEDs are turned on with a HID SetReport call with the following parameters: report type = 2 (kHIDRtOutputReport) report ID = 4 report length = 1 byte report data = 0x00 or 0x01 (off or on) This is called from the kernel so the API is not what you'd need in user space. In...