shared files for hid support
Go to file
Maschell f3cbf9332e [Travis] Updated the script to now use pacman, caching optimization
- The Makefile now doesn't rely on wii_rules anymore.
2018-05-26 12:55:57 +02:00
source Simplified the code by using the TCPServer from libutils 2018-03-07 18:42:36 +01:00
.gitattributes 💥🐫 Added .gitattributes & .gitignore files 2016-04-25 20:21:54 +02:00
.gitignore Transforming it into a static lib 2017-10-29 09:34:47 +01:00
.travis.yml [Travis] Updated the script to now use pacman, caching optimization 2018-05-26 12:55:57 +02:00
Makefile [Travis] Updated the script to now use pacman, caching optimization 2018-05-26 12:55:57 +02:00
README.md Added travis script 2017-11-19 11:05:23 +01:00

Build Status

What is in this controller_patcher repository

These files are the magic behind tools like HID to VPAD and can used to use your USB HID Device on your WiiU console.

How to create config files

Detailed information about creating config files and adding support for more controller can be found in the wiki

Where can I find config files

Configfiles for all controllers are collection in this repository

Logging usage

To able to use the logging change the "DO_LOGGING" parameter in the Makefile.

Compiling

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

Dependencies

Example implementation

How to "install" it

TODO!

ControllerPatcher::Init(NULL); //No custom configuration
ControllerPatcher::disableControllerMapping();
ControllerPatcher::startNetworkServer();
ControllerPatcher::DeInit();
ControllerPatcher::stopNetworkServer();

Credits:

  • Maschell
  • FIX94 - huge thanks to him and his initally created gc-to-vpad. Was a motivation and base to start all this