├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .gitmodules ├── .kitspace ├── bom.csv ├── copper_bottom.gbr ├── copper_top.gbr ├── drill_1_16.xln ├── gerber_job.gbrjob ├── profile.gbr ├── silkscreen_bottom.gbr ├── silkscreen_top.gbr ├── soldermask_bottom.gbr ├── soldermask_top.gbr ├── solderpaste_bottom.gbr └── solderpaste_top.gbr ├── Firmware ├── LICENSE ├── README.md ├── platformio.ini └── src │ ├── main.cpp │ ├── main.h │ ├── master.cpp │ ├── slave.cpp │ ├── usbd │ ├── usbd_xid.cpp │ └── usbd_xid.h │ └── usbh │ ├── usbh_xinput.cpp │ └── usbh_xinput.h ├── Hardware ├── LICENSE ├── README.md ├── ogx360.brd ├── ogx360.sch └── schematic.png ├── Images ├── connection.jpg ├── image2.jpg ├── image4.jpg ├── selftest.jpg └── steelbattalion.png ├── README.md └── kitspace.yaml /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/ogx360/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/ogx360/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/ogx360/HEAD/.gitmodules -------------------------------------------------------------------------------- /.kitspace/bom.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/ogx360/HEAD/.kitspace/bom.csv -------------------------------------------------------------------------------- /.kitspace/copper_bottom.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/ogx360/HEAD/.kitspace/copper_bottom.gbr -------------------------------------------------------------------------------- /.kitspace/copper_top.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/ogx360/HEAD/.kitspace/copper_top.gbr -------------------------------------------------------------------------------- /.kitspace/drill_1_16.xln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/ogx360/HEAD/.kitspace/drill_1_16.xln -------------------------------------------------------------------------------- /.kitspace/gerber_job.gbrjob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/ogx360/HEAD/.kitspace/gerber_job.gbrjob -------------------------------------------------------------------------------- /.kitspace/profile.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/ogx360/HEAD/.kitspace/profile.gbr -------------------------------------------------------------------------------- /.kitspace/silkscreen_bottom.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/ogx360/HEAD/.kitspace/silkscreen_bottom.gbr -------------------------------------------------------------------------------- /.kitspace/silkscreen_top.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/ogx360/HEAD/.kitspace/silkscreen_top.gbr -------------------------------------------------------------------------------- /.kitspace/soldermask_bottom.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/ogx360/HEAD/.kitspace/soldermask_bottom.gbr -------------------------------------------------------------------------------- /.kitspace/soldermask_top.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/ogx360/HEAD/.kitspace/soldermask_top.gbr -------------------------------------------------------------------------------- /.kitspace/solderpaste_bottom.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/ogx360/HEAD/.kitspace/solderpaste_bottom.gbr -------------------------------------------------------------------------------- /.kitspace/solderpaste_top.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/ogx360/HEAD/.kitspace/solderpaste_top.gbr -------------------------------------------------------------------------------- /Firmware/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/ogx360/HEAD/Firmware/LICENSE -------------------------------------------------------------------------------- /Firmware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/ogx360/HEAD/Firmware/README.md -------------------------------------------------------------------------------- /Firmware/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/ogx360/HEAD/Firmware/platformio.ini -------------------------------------------------------------------------------- /Firmware/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/ogx360/HEAD/Firmware/src/main.cpp -------------------------------------------------------------------------------- /Firmware/src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/ogx360/HEAD/Firmware/src/main.h -------------------------------------------------------------------------------- /Firmware/src/master.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/ogx360/HEAD/Firmware/src/master.cpp -------------------------------------------------------------------------------- /Firmware/src/slave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/ogx360/HEAD/Firmware/src/slave.cpp -------------------------------------------------------------------------------- /Firmware/src/usbd/usbd_xid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/ogx360/HEAD/Firmware/src/usbd/usbd_xid.cpp -------------------------------------------------------------------------------- /Firmware/src/usbd/usbd_xid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/ogx360/HEAD/Firmware/src/usbd/usbd_xid.h -------------------------------------------------------------------------------- /Firmware/src/usbh/usbh_xinput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/ogx360/HEAD/Firmware/src/usbh/usbh_xinput.cpp -------------------------------------------------------------------------------- /Firmware/src/usbh/usbh_xinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/ogx360/HEAD/Firmware/src/usbh/usbh_xinput.h -------------------------------------------------------------------------------- /Hardware/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/ogx360/HEAD/Hardware/LICENSE -------------------------------------------------------------------------------- /Hardware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/ogx360/HEAD/Hardware/README.md -------------------------------------------------------------------------------- /Hardware/ogx360.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/ogx360/HEAD/Hardware/ogx360.brd -------------------------------------------------------------------------------- /Hardware/ogx360.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/ogx360/HEAD/Hardware/ogx360.sch -------------------------------------------------------------------------------- /Hardware/schematic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/ogx360/HEAD/Hardware/schematic.png -------------------------------------------------------------------------------- /Images/connection.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/ogx360/HEAD/Images/connection.jpg -------------------------------------------------------------------------------- /Images/image2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/ogx360/HEAD/Images/image2.jpg -------------------------------------------------------------------------------- /Images/image4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/ogx360/HEAD/Images/image4.jpg -------------------------------------------------------------------------------- /Images/selftest.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/ogx360/HEAD/Images/selftest.jpg -------------------------------------------------------------------------------- /Images/steelbattalion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/ogx360/HEAD/Images/steelbattalion.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/ogx360/HEAD/README.md -------------------------------------------------------------------------------- /kitspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/ogx360/HEAD/kitspace.yaml --------------------------------------------------------------------------------