├── .gitignore ├── C ├── Config │ └── LUFAConfig.h ├── Descriptors.c ├── Descriptors.h ├── HORI_Descriptors ├── Joystick.c ├── Joystick.h ├── ironic.data ├── makefile ├── uart.c └── uart.h ├── LUFA_LICENSE ├── Python ├── JoystickEnums.py ├── constants.py ├── controllerMapping.csv ├── example.py ├── keys.txt ├── maths.py └── seriallib.py └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hpmason/Switch-UART-Controller-Tools/HEAD/.gitignore -------------------------------------------------------------------------------- /C/Config/LUFAConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hpmason/Switch-UART-Controller-Tools/HEAD/C/Config/LUFAConfig.h -------------------------------------------------------------------------------- /C/Descriptors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hpmason/Switch-UART-Controller-Tools/HEAD/C/Descriptors.c -------------------------------------------------------------------------------- /C/Descriptors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hpmason/Switch-UART-Controller-Tools/HEAD/C/Descriptors.h -------------------------------------------------------------------------------- /C/HORI_Descriptors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hpmason/Switch-UART-Controller-Tools/HEAD/C/HORI_Descriptors -------------------------------------------------------------------------------- /C/Joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hpmason/Switch-UART-Controller-Tools/HEAD/C/Joystick.c -------------------------------------------------------------------------------- /C/Joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hpmason/Switch-UART-Controller-Tools/HEAD/C/Joystick.h -------------------------------------------------------------------------------- /C/ironic.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hpmason/Switch-UART-Controller-Tools/HEAD/C/ironic.data -------------------------------------------------------------------------------- /C/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hpmason/Switch-UART-Controller-Tools/HEAD/C/makefile -------------------------------------------------------------------------------- /C/uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hpmason/Switch-UART-Controller-Tools/HEAD/C/uart.c -------------------------------------------------------------------------------- /C/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hpmason/Switch-UART-Controller-Tools/HEAD/C/uart.h -------------------------------------------------------------------------------- /LUFA_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hpmason/Switch-UART-Controller-Tools/HEAD/LUFA_LICENSE -------------------------------------------------------------------------------- /Python/JoystickEnums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hpmason/Switch-UART-Controller-Tools/HEAD/Python/JoystickEnums.py -------------------------------------------------------------------------------- /Python/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hpmason/Switch-UART-Controller-Tools/HEAD/Python/constants.py -------------------------------------------------------------------------------- /Python/controllerMapping.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hpmason/Switch-UART-Controller-Tools/HEAD/Python/controllerMapping.csv -------------------------------------------------------------------------------- /Python/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hpmason/Switch-UART-Controller-Tools/HEAD/Python/example.py -------------------------------------------------------------------------------- /Python/keys.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hpmason/Switch-UART-Controller-Tools/HEAD/Python/keys.txt -------------------------------------------------------------------------------- /Python/maths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hpmason/Switch-UART-Controller-Tools/HEAD/Python/maths.py -------------------------------------------------------------------------------- /Python/seriallib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hpmason/Switch-UART-Controller-Tools/HEAD/Python/seriallib.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hpmason/Switch-UART-Controller-Tools/HEAD/README.md --------------------------------------------------------------------------------