├── .github └── workflows │ └── build.yml ├── .gitignore ├── .images ├── install.jpg └── proto.jpg ├── .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 ├── LICENSE ├── README.md ├── boards ├── xboxhdmi_stm32f04.json └── xboxhdmi_stm32f07.json ├── hardware ├── README.md ├── conex_focus_flex.brd ├── flatflex.png ├── gerbers_conex_focus_flex.zip ├── gerbers_xboxhdmi.zip ├── xboxhdmi.brd └── xboxhdmi.sch ├── kitspace.yaml ├── platformio.ini └── src ├── adv7511.c ├── adv7511.h ├── interrupt.c ├── interrupt.h ├── main.c ├── main.h └── stm32 ├── stm32f0xx_hal_conf.h ├── stm32f0xx_hal_msp.c └── system_stm32f0xx.c /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxHDMI-Ryzee119/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .pio 2 | .vscode 3 | include 4 | test 5 | lib -------------------------------------------------------------------------------- /.images/install.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxHDMI-Ryzee119/HEAD/.images/install.jpg -------------------------------------------------------------------------------- /.images/proto.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxHDMI-Ryzee119/HEAD/.images/proto.jpg -------------------------------------------------------------------------------- /.kitspace/bom.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxHDMI-Ryzee119/HEAD/.kitspace/bom.csv -------------------------------------------------------------------------------- /.kitspace/copper_bottom.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxHDMI-Ryzee119/HEAD/.kitspace/copper_bottom.gbr -------------------------------------------------------------------------------- /.kitspace/copper_top.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxHDMI-Ryzee119/HEAD/.kitspace/copper_top.gbr -------------------------------------------------------------------------------- /.kitspace/drill_1_16.xln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxHDMI-Ryzee119/HEAD/.kitspace/drill_1_16.xln -------------------------------------------------------------------------------- /.kitspace/gerber_job.gbrjob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxHDMI-Ryzee119/HEAD/.kitspace/gerber_job.gbrjob -------------------------------------------------------------------------------- /.kitspace/profile.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxHDMI-Ryzee119/HEAD/.kitspace/profile.gbr -------------------------------------------------------------------------------- /.kitspace/silkscreen_bottom.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxHDMI-Ryzee119/HEAD/.kitspace/silkscreen_bottom.gbr -------------------------------------------------------------------------------- /.kitspace/silkscreen_top.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxHDMI-Ryzee119/HEAD/.kitspace/silkscreen_top.gbr -------------------------------------------------------------------------------- /.kitspace/soldermask_bottom.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxHDMI-Ryzee119/HEAD/.kitspace/soldermask_bottom.gbr -------------------------------------------------------------------------------- /.kitspace/soldermask_top.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxHDMI-Ryzee119/HEAD/.kitspace/soldermask_top.gbr -------------------------------------------------------------------------------- /.kitspace/solderpaste_bottom.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxHDMI-Ryzee119/HEAD/.kitspace/solderpaste_bottom.gbr -------------------------------------------------------------------------------- /.kitspace/solderpaste_top.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxHDMI-Ryzee119/HEAD/.kitspace/solderpaste_top.gbr -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxHDMI-Ryzee119/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxHDMI-Ryzee119/HEAD/README.md -------------------------------------------------------------------------------- /boards/xboxhdmi_stm32f04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxHDMI-Ryzee119/HEAD/boards/xboxhdmi_stm32f04.json -------------------------------------------------------------------------------- /boards/xboxhdmi_stm32f07.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxHDMI-Ryzee119/HEAD/boards/xboxhdmi_stm32f07.json -------------------------------------------------------------------------------- /hardware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxHDMI-Ryzee119/HEAD/hardware/README.md -------------------------------------------------------------------------------- /hardware/conex_focus_flex.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxHDMI-Ryzee119/HEAD/hardware/conex_focus_flex.brd -------------------------------------------------------------------------------- /hardware/flatflex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxHDMI-Ryzee119/HEAD/hardware/flatflex.png -------------------------------------------------------------------------------- /hardware/gerbers_conex_focus_flex.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxHDMI-Ryzee119/HEAD/hardware/gerbers_conex_focus_flex.zip -------------------------------------------------------------------------------- /hardware/gerbers_xboxhdmi.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxHDMI-Ryzee119/HEAD/hardware/gerbers_xboxhdmi.zip -------------------------------------------------------------------------------- /hardware/xboxhdmi.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxHDMI-Ryzee119/HEAD/hardware/xboxhdmi.brd -------------------------------------------------------------------------------- /hardware/xboxhdmi.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxHDMI-Ryzee119/HEAD/hardware/xboxhdmi.sch -------------------------------------------------------------------------------- /kitspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxHDMI-Ryzee119/HEAD/kitspace.yaml -------------------------------------------------------------------------------- /platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxHDMI-Ryzee119/HEAD/platformio.ini -------------------------------------------------------------------------------- /src/adv7511.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxHDMI-Ryzee119/HEAD/src/adv7511.c -------------------------------------------------------------------------------- /src/adv7511.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxHDMI-Ryzee119/HEAD/src/adv7511.h -------------------------------------------------------------------------------- /src/interrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxHDMI-Ryzee119/HEAD/src/interrupt.c -------------------------------------------------------------------------------- /src/interrupt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxHDMI-Ryzee119/HEAD/src/interrupt.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxHDMI-Ryzee119/HEAD/src/main.c -------------------------------------------------------------------------------- /src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxHDMI-Ryzee119/HEAD/src/main.h -------------------------------------------------------------------------------- /src/stm32/stm32f0xx_hal_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxHDMI-Ryzee119/HEAD/src/stm32/stm32f0xx_hal_conf.h -------------------------------------------------------------------------------- /src/stm32/stm32f0xx_hal_msp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxHDMI-Ryzee119/HEAD/src/stm32/stm32f0xx_hal_msp.c -------------------------------------------------------------------------------- /src/stm32/system_stm32f0xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ryzee119/XboxHDMI-Ryzee119/HEAD/src/stm32/system_stm32f0xx.c --------------------------------------------------------------------------------