KO
|
EN
gitlite — search
Search
#hacktoberfest
#java
#ruby
#javascript
#python
#shell
#wordpress
#php
#cli
#android
#erlang
#library
controller_patcher
★ 42
Open GitHub ↗
shared files for hid support
Download README (.md)
Explore Similar Repositories
MR.AspNet.Identity.EntityFramework6
:
EntityFramework 6 provider + InMemory providers for Asp.Net Core Identity.
EmptyLayout
:
一个可以展示多种状态的EmptyLayout
sherlock
:
Sherlock QA - Test Manager
clip-rect
:
✂️ - clip-rect is an helper to create painless `clip: rect()` animations with GSAP.
bdit_data-sources
:
Data sources used by the Transportation Data & Analytics Unit
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
controller_patcher
?
Download (.md)
[](https://travis-ci.org/Maschell/controller_patcher) # 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](https://github.com/Maschell/controller_patcher/wiki) # Where can I find config files Configfiles for all controllers are collection in [this repository](https://github.com/Maschell/controller_patch_configs) ## 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 - Application needs to be loaded from the [homebrew_launcher](https://github.com/dimok789/homebrew_launcher) - [libutils](https://github.com/Maschell/libutils) for common functions. - [dynamic_libs](https://github.com/Maschell/dynamic_libs/tree/lib) for access to the functions. # 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