Don't working touchpad #50
Replies: 1 comment 2 replies
|
The trackpad should work if it is properly GPIO pinned, but it may be timing out when falling back to I2C interrupts. Essentially what this means is that instead of using GPIO -- an event-based system (where messages are only sent to and from the CPU as needed) -- instead, the trackpad driver may be falling back to polling messages from the trackpad at a regular interval. If the trackpad is somehow misconfigured, polling over I2C will not receive any responses from the trackpad. You can check for this behavior with You'll want to add You'll also want to grab some more detailed information about what hardware is detected for the VoodooI2C drivers by running the below command (example output): ioreg -rxn IOHIDInterface -k "VoodooI2CServices Supported" -t | grep -E 'IOACPIPlatformDevice|IOPCIDevice|VoodooI2CDeviceNub|VendorID|ProductID|HIDEventDriver <class VoodooI2C|Interface <class VoodooI2C' | cut -d "<" -f1 |
Uh oh!
There was an error while loading. Please reload this page.
Hello! After installing MacOS Ventura, the touchpad does not work, although the project specifies full touchpad support. What can be done to make it work?
All reactions