I try to implement an application in snow Leopard, Reading Data from USB/HID device.In my application i tried following steps:
- IOHIDManagerCreate()
- CreateDeviceMatchingDictionary()
- IOHIDManagerSetDeviceMatching()
- IOHIDManagerOpen()
- IOHIDManagerCopyDevices()
- Create a Reference for device(IOHIDDeviceRef)
- Based On the IOHIDDeviceRef i Fetch device details such as(Device ProductIDKey, Device VendorIDKey,Device ProductKey,Device Serial NumberKey,Device VersionNumberKey ect.)
- IOHIDDeviceOpen(),ie :Using IOHIDDeviceRef i opened Device;
- IOHIDDeviceCopyMatchingElements(); Ie Copy Matching Elements from the Device;
- Create a Reference element(ie IOHIDElementRef);
- Using IOHIDElementRef i retrieved Device Usage,Device Cocookie,Device UsagePage etc. Up to this My application working Fine.
My doubts are
- How can read data From Endpoint 1, My device is special purpose device having only one End point(Interrupt no synchronization data end point)?
- Is their any Pipe associated with end point 1(HID Device)?;
- Is their any ReadPipe and WritePipe functions in HIDManager Based Application?
- Is it possible to retrieve data from USB/HID using IOHIDDeviceSetReoprtWithCallback()?
Every thing Did based on this Link: http://developer.apple.com/library/mac/#documentation/DeviceDrivers/Conceptual/HID/new_api_10_5/tn2187.html#//apple_ref/doc/uid/TP40000970-CH214-SW7 ...
Thank you so much for your help ..