These files are the magic behind tools like HID to VPAD and can used to use your USB HID Device on your WiiU console.
Detailed information about creating config files and adding support for more controller can be found in the wiki
Configfiles for all controllers are collection in this repository
To able to use the logging change the "DO_LOGGING" parameter in the Makefile.
You need to install all dependencies first!
Install this static library into your portlibs folder via:
make && make install
Link the application with
-lutils -ldynamiclibs -lcontrollerpatcher
You also need to add the include path to your Makefile. Example:
export INCLUDE := [...] -I$(PORTLIBS)/include
- Application needs to be loaded from the homebrew_launcher
- libutils for common functions.
- dynamic_libs for access to the functions.
TODO!
ControllerPatcher::Init(NULL); //No custom configuration
ControllerPatcher::disableControllerMapping();
ControllerPatcher::startNetworkServer();
ControllerPatcher::DeInit();
ControllerPatcher::stopNetworkServer();
- Maschell
- FIX94 - huge thanks to him and his initally created gc-to-vpad. Was a motivation and base to start all this