Hi,
I try to read data from HID device using ReadInput in timer (50ms, 300ms, ...) like this:
System::Void read_timer_Tick(System::Object^ sender, System::EventArgs^ e)
{
if (hidDevice == nullptr) return;
if (hidDevice->ReadInput())
//if (hidDevice->GetInput(hidDevice->Inputs->ID))
{
Hi,
Which endpoints are you interacting with Getinput and Readinput APIs ?. ReadInput will hang indefinitely if the device does not have an Input report ready to be read.
Thanks
Prajith
I simply call function of CyHidDevice, but most likely it was implemented assuming that it will be used in some other way, but at this moment it is unclear how it should be used.
Hi,
Using ReadInput( ) you should be able to communicate with the non-Control endpoint. GetInput( ) API is for Control endpoit.
Thanks
Prajith