You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In order to successfully handle the official Raspberry Pi keyboard / hub (Holtek Semiconductor, Inc. Wired Keyboard / Genesys Logic, Inc. Hub) I had to accept a NACK as a success in HCDCheckErrorAndAction. Something like:
if (interrupts.NegativeAcknowledgement) { // Endpoint device acknowledge
sendCtrl->Success = true; // You can set the success flag
sendCtrl->GlobalTries = 0;
return ResultOK; // Return OK result
}
The text was updated successfully, but these errors were encountered:
In order to successfully handle the official Raspberry Pi keyboard / hub (Holtek Semiconductor, Inc. Wired Keyboard / Genesys Logic, Inc. Hub) I had to accept a NACK as a success in HCDCheckErrorAndAction. Something like:
if (interrupts.NegativeAcknowledgement) { // Endpoint device acknowledge
sendCtrl->Success = true; // You can set the success flag
sendCtrl->GlobalTries = 0;
return ResultOK; // Return OK result
}
The text was updated successfully, but these errors were encountered: