├── .gitattributes ├── .gitignore ├── LICENSE.txt ├── MSF XINPUT UserGuide V1.pdf ├── MSF_XINPUT ├── Teensyduino Files that were edited │ ├── Readme.txt │ └── hardware │ │ └── teensy │ │ └── avr │ │ ├── boards.txt │ │ └── cores │ │ └── teensy3 │ │ ├── WProgram.h │ │ ├── usb_desc.c │ │ ├── usb_desc.h │ │ ├── usb_inst.cpp │ │ ├── usb_serial.h │ │ ├── usb_xinput.c │ │ └── usb_xinput.h ├── examples │ ├── MSF_FightStick │ │ └── MSF_FightStick.ino │ └── Simple_Example │ │ └── Simple_Example.ino ├── keywords.txt ├── xinput.cpp └── xinput.h └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlittell/MSF-XINPUT/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlittell/MSF-XINPUT/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlittell/MSF-XINPUT/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MSF XINPUT UserGuide V1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlittell/MSF-XINPUT/HEAD/MSF XINPUT UserGuide V1.pdf -------------------------------------------------------------------------------- /MSF_XINPUT/Teensyduino Files that were edited/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlittell/MSF-XINPUT/HEAD/MSF_XINPUT/Teensyduino Files that were edited/Readme.txt -------------------------------------------------------------------------------- /MSF_XINPUT/Teensyduino Files that were edited/hardware/teensy/avr/boards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlittell/MSF-XINPUT/HEAD/MSF_XINPUT/Teensyduino Files that were edited/hardware/teensy/avr/boards.txt -------------------------------------------------------------------------------- /MSF_XINPUT/Teensyduino Files that were edited/hardware/teensy/avr/cores/teensy3/WProgram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlittell/MSF-XINPUT/HEAD/MSF_XINPUT/Teensyduino Files that were edited/hardware/teensy/avr/cores/teensy3/WProgram.h -------------------------------------------------------------------------------- /MSF_XINPUT/Teensyduino Files that were edited/hardware/teensy/avr/cores/teensy3/usb_desc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlittell/MSF-XINPUT/HEAD/MSF_XINPUT/Teensyduino Files that were edited/hardware/teensy/avr/cores/teensy3/usb_desc.c -------------------------------------------------------------------------------- /MSF_XINPUT/Teensyduino Files that were edited/hardware/teensy/avr/cores/teensy3/usb_desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlittell/MSF-XINPUT/HEAD/MSF_XINPUT/Teensyduino Files that were edited/hardware/teensy/avr/cores/teensy3/usb_desc.h -------------------------------------------------------------------------------- /MSF_XINPUT/Teensyduino Files that were edited/hardware/teensy/avr/cores/teensy3/usb_inst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlittell/MSF-XINPUT/HEAD/MSF_XINPUT/Teensyduino Files that were edited/hardware/teensy/avr/cores/teensy3/usb_inst.cpp -------------------------------------------------------------------------------- /MSF_XINPUT/Teensyduino Files that were edited/hardware/teensy/avr/cores/teensy3/usb_serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlittell/MSF-XINPUT/HEAD/MSF_XINPUT/Teensyduino Files that were edited/hardware/teensy/avr/cores/teensy3/usb_serial.h -------------------------------------------------------------------------------- /MSF_XINPUT/Teensyduino Files that were edited/hardware/teensy/avr/cores/teensy3/usb_xinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlittell/MSF-XINPUT/HEAD/MSF_XINPUT/Teensyduino Files that were edited/hardware/teensy/avr/cores/teensy3/usb_xinput.c -------------------------------------------------------------------------------- /MSF_XINPUT/Teensyduino Files that were edited/hardware/teensy/avr/cores/teensy3/usb_xinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlittell/MSF-XINPUT/HEAD/MSF_XINPUT/Teensyduino Files that were edited/hardware/teensy/avr/cores/teensy3/usb_xinput.h -------------------------------------------------------------------------------- /MSF_XINPUT/examples/MSF_FightStick/MSF_FightStick.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlittell/MSF-XINPUT/HEAD/MSF_XINPUT/examples/MSF_FightStick/MSF_FightStick.ino -------------------------------------------------------------------------------- /MSF_XINPUT/examples/Simple_Example/Simple_Example.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlittell/MSF-XINPUT/HEAD/MSF_XINPUT/examples/Simple_Example/Simple_Example.ino -------------------------------------------------------------------------------- /MSF_XINPUT/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlittell/MSF-XINPUT/HEAD/MSF_XINPUT/keywords.txt -------------------------------------------------------------------------------- /MSF_XINPUT/xinput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlittell/MSF-XINPUT/HEAD/MSF_XINPUT/xinput.cpp -------------------------------------------------------------------------------- /MSF_XINPUT/xinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlittell/MSF-XINPUT/HEAD/MSF_XINPUT/xinput.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zlittell/MSF-XINPUT/HEAD/README.md --------------------------------------------------------------------------------