├── .gitignore ├── LICENSE ├── README.md ├── TODO.md ├── documents ├── Connections to RP2350PC.jpg ├── ConnectionsToStd2350.jpeg ├── RP2350pc_Rev_A.pdf ├── assets │ ├── Connections to RP2350PC.jpg │ ├── image-20250707074634507.png │ └── wiring.jpg ├── benchmarks.ods ├── external.md ├── getstarted.md ├── modules.md ├── resolutions.ods └── wiring.jpg ├── environment ├── common.linux.make ├── common.macOS.make ├── pico.linux.make ├── pico.macOS.make └── system.make ├── modules ├── builder.py ├── bully │ ├── CMakeLists.txt │ ├── Makefile │ ├── app │ │ └── main.c │ └── dependencies.info ├── common │ ├── app │ │ └── keep.txt │ ├── dependencies.info │ ├── documents │ │ └── common.md │ ├── include │ │ ├── common_module.h │ │ └── common_module_local.h │ └── library │ │ └── common.c ├── dvi │ ├── CMakeLists.txt │ ├── Makefile │ ├── app │ │ └── main.c │ ├── dependencies.info │ ├── documents │ │ └── dvi.md │ ├── include │ │ ├── dvi_module.h │ │ ├── dvi_module_local.h │ │ └── renderer.h │ └── library │ │ ├── asm │ │ ├── render160_256.S │ │ └── render320_256.S │ │ ├── dma.c │ │ ├── hstx_encoder.c │ │ ├── render.c │ │ └── setup.c ├── graphics │ ├── CMakeLists.txt │ ├── Makefile │ ├── app │ │ └── main.c │ ├── dependencies.info │ ├── documents │ │ └── graphics.md │ ├── include │ │ ├── graphics_module.h │ │ └── graphics_module_local.h │ └── library │ │ ├── dispatch.c │ │ ├── drawing │ │ ├── character.c │ │ ├── colours.c │ │ ├── ellipse.c │ │ ├── line.c │ │ ├── rect.c │ │ └── triangle.c │ │ ├── fonts │ │ └── default.c │ │ ├── raw.c │ │ └── setup.c ├── input │ ├── CMakeLists.txt │ ├── Makefile │ ├── app │ │ └── main.c │ ├── dependencies.info │ ├── documents │ │ └── input.md │ ├── include │ │ ├── input_module.h │ │ ├── input_module_local.h │ │ └── usb_keycodes.h │ └── library │ │ ├── gamepad │ │ ├── drivers │ │ │ └── snespad.c │ │ └── generic.c │ │ ├── keyboard │ │ ├── locale.c │ │ ├── locale_data.c │ │ ├── process.c │ │ ├── queue.c │ │ └── status.c │ │ ├── mouse │ │ └── mouse.c │ │ └── reports.c ├── memory │ ├── CMakeLists.txt │ ├── Makefile │ ├── app │ │ └── main.c │ ├── dependencies.info │ ├── documents │ │ └── memory.md │ ├── include │ │ ├── memory_module.h │ │ └── memory_module_local.h │ └── library │ │ ├── setup.c │ │ └── tracker.c ├── modes │ ├── CMakeLists.txt │ ├── Makefile │ ├── app │ │ └── main.c │ ├── dependencies.info │ ├── documents │ │ ├── memory.ods │ │ └── modes.md │ ├── include │ │ ├── modes_module.h │ │ └── modes_module_local.h │ └── library │ │ ├── modes.c │ │ └── modesetup.c ├── psram │ ├── CMakeLists.txt │ ├── Makefile │ ├── app │ │ └── main.c │ ├── dependencies.info │ ├── documents │ │ └── psram.md │ ├── include │ │ ├── psram_module.h │ │ ├── psram_module_local.h │ │ └── rp2350pc_psram.h │ └── library │ │ ├── rp2350pc_psram.c │ │ └── setup.c ├── sprites │ ├── CMakeLists.txt │ ├── Makefile │ ├── app │ │ └── main.c │ ├── dependencies.info │ ├── documents │ │ └── sprites.md │ └── include │ │ ├── sprites_module.h │ │ └── sprites_module_local.h ├── text │ ├── CMakeLists.txt │ ├── Makefile │ ├── app │ │ └── main.c │ ├── dependencies.info │ ├── documents │ │ └── text.md │ ├── include │ │ ├── text_module.h │ │ └── text_module_local.h │ └── library │ │ ├── setup.c │ │ └── write.c └── usb │ ├── CMakeLists.txt │ ├── Makefile │ ├── app │ └── main.c │ ├── dependencies.info │ ├── documents │ └── usb.md │ ├── include │ ├── diskio.h │ ├── ff.h │ ├── ffconf.h │ ├── tusb_config.h │ ├── usb_module.h │ └── usb_module_local.h │ └── library │ ├── fatfs │ ├── ff.c │ ├── ffsystem.c │ └── ffunicode.c │ ├── fileio │ ├── directory.c │ ├── file.c │ ├── filedirect.c │ └── filesupport.c │ ├── hid_handler.c │ ├── msc_handler.c │ └── usb_handler.c ├── other ├── data │ └── localisation │ │ ├── Makefile │ │ ├── extract.py │ │ ├── layouts │ │ ├── de.xml │ │ ├── dk.xml │ │ ├── fi.xml │ │ ├── fr.xml │ │ ├── get.sh │ │ ├── it.xml │ │ ├── no.xml │ │ ├── pl.xml │ │ ├── se.xml │ │ ├── uk.xml │ │ └── us.xml │ │ └── scantousb.py ├── experiments │ ├── blinky │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ └── blinky.c │ ├── hstx_demo │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── dvi_out_hstx_encoder.c │ │ └── mountains_640x480_rgb332.h │ ├── psram │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── psram.c │ │ ├── rp2_psram.c │ │ └── rp2_psram.h │ ├── sdl2 │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ └── main.c │ ├── serial │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ └── serial.c │ └── usbhost │ │ ├── CMakeLists.txt │ │ ├── LICENSE.TXT │ │ ├── Makefile │ │ ├── cdc_app.c │ │ ├── hid_app.c │ │ ├── main.c │ │ ├── msc_app.c │ │ └── tusb_config.h ├── old │ └── console │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── app │ │ └── main.c │ │ ├── dependencies.info │ │ ├── documents │ │ └── console.md │ │ ├── include │ │ ├── console_module.h │ │ └── console_module_local.h │ │ └── library │ │ ├── console.c │ │ └── write.c └── prebuilt │ ├── blinky_arm.uf2 │ └── blinky_riscv.uf2 └── runtime ├── CMakeLists.txt ├── Makefile ├── include ├── runtime.h └── usb_keycodes.h ├── source ├── common.c ├── fileio │ ├── directory.c │ ├── file.c │ ├── filedirect.c │ └── filesupport.c ├── main.c ├── psram.c ├── render.c ├── sound │ └── sound.c.x ├── system.c └── usb │ ├── gamepad.c │ ├── keyboard.c │ ├── mouse.c │ └── usb.c └── storage └── keep.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/TODO.md -------------------------------------------------------------------------------- /documents/Connections to RP2350PC.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/documents/Connections to RP2350PC.jpg -------------------------------------------------------------------------------- /documents/ConnectionsToStd2350.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/documents/ConnectionsToStd2350.jpeg -------------------------------------------------------------------------------- /documents/RP2350pc_Rev_A.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/documents/RP2350pc_Rev_A.pdf -------------------------------------------------------------------------------- /documents/assets/Connections to RP2350PC.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/documents/assets/Connections to RP2350PC.jpg -------------------------------------------------------------------------------- /documents/assets/image-20250707074634507.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/documents/assets/image-20250707074634507.png -------------------------------------------------------------------------------- /documents/assets/wiring.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/documents/assets/wiring.jpg -------------------------------------------------------------------------------- /documents/benchmarks.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/documents/benchmarks.ods -------------------------------------------------------------------------------- /documents/external.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/documents/external.md -------------------------------------------------------------------------------- /documents/getstarted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/documents/getstarted.md -------------------------------------------------------------------------------- /documents/modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/documents/modules.md -------------------------------------------------------------------------------- /documents/resolutions.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/documents/resolutions.ods -------------------------------------------------------------------------------- /documents/wiring.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/documents/wiring.jpg -------------------------------------------------------------------------------- /environment/common.linux.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/environment/common.linux.make -------------------------------------------------------------------------------- /environment/common.macOS.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/environment/common.macOS.make -------------------------------------------------------------------------------- /environment/pico.linux.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/environment/pico.linux.make -------------------------------------------------------------------------------- /environment/pico.macOS.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/environment/pico.macOS.make -------------------------------------------------------------------------------- /environment/system.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/environment/system.make -------------------------------------------------------------------------------- /modules/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/builder.py -------------------------------------------------------------------------------- /modules/bully/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/bully/CMakeLists.txt -------------------------------------------------------------------------------- /modules/bully/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/bully/Makefile -------------------------------------------------------------------------------- /modules/bully/app/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/bully/app/main.c -------------------------------------------------------------------------------- /modules/bully/dependencies.info: -------------------------------------------------------------------------------- 1 | # 2 | # Dependencies 3 | # 4 | common 5 | usb 6 | dvi 7 | input 8 | modes 9 | graphics 10 | -------------------------------------------------------------------------------- /modules/common/app/keep.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modules/common/dependencies.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/common/dependencies.info -------------------------------------------------------------------------------- /modules/common/documents/common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/common/documents/common.md -------------------------------------------------------------------------------- /modules/common/include/common_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/common/include/common_module.h -------------------------------------------------------------------------------- /modules/common/include/common_module_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/common/include/common_module_local.h -------------------------------------------------------------------------------- /modules/common/library/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/common/library/common.c -------------------------------------------------------------------------------- /modules/dvi/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/dvi/CMakeLists.txt -------------------------------------------------------------------------------- /modules/dvi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/dvi/Makefile -------------------------------------------------------------------------------- /modules/dvi/app/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/dvi/app/main.c -------------------------------------------------------------------------------- /modules/dvi/dependencies.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/dvi/dependencies.info -------------------------------------------------------------------------------- /modules/dvi/documents/dvi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/dvi/documents/dvi.md -------------------------------------------------------------------------------- /modules/dvi/include/dvi_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/dvi/include/dvi_module.h -------------------------------------------------------------------------------- /modules/dvi/include/dvi_module_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/dvi/include/dvi_module_local.h -------------------------------------------------------------------------------- /modules/dvi/include/renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/dvi/include/renderer.h -------------------------------------------------------------------------------- /modules/dvi/library/asm/render160_256.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/dvi/library/asm/render160_256.S -------------------------------------------------------------------------------- /modules/dvi/library/asm/render320_256.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/dvi/library/asm/render320_256.S -------------------------------------------------------------------------------- /modules/dvi/library/dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/dvi/library/dma.c -------------------------------------------------------------------------------- /modules/dvi/library/hstx_encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/dvi/library/hstx_encoder.c -------------------------------------------------------------------------------- /modules/dvi/library/render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/dvi/library/render.c -------------------------------------------------------------------------------- /modules/dvi/library/setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/dvi/library/setup.c -------------------------------------------------------------------------------- /modules/graphics/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/graphics/CMakeLists.txt -------------------------------------------------------------------------------- /modules/graphics/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/graphics/Makefile -------------------------------------------------------------------------------- /modules/graphics/app/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/graphics/app/main.c -------------------------------------------------------------------------------- /modules/graphics/dependencies.info: -------------------------------------------------------------------------------- 1 | # 2 | # Dependencies 3 | # 4 | common 5 | usb 6 | dvi 7 | modes -------------------------------------------------------------------------------- /modules/graphics/documents/graphics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/graphics/documents/graphics.md -------------------------------------------------------------------------------- /modules/graphics/include/graphics_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/graphics/include/graphics_module.h -------------------------------------------------------------------------------- /modules/graphics/include/graphics_module_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/graphics/include/graphics_module_local.h -------------------------------------------------------------------------------- /modules/graphics/library/dispatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/graphics/library/dispatch.c -------------------------------------------------------------------------------- /modules/graphics/library/drawing/character.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/graphics/library/drawing/character.c -------------------------------------------------------------------------------- /modules/graphics/library/drawing/colours.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/graphics/library/drawing/colours.c -------------------------------------------------------------------------------- /modules/graphics/library/drawing/ellipse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/graphics/library/drawing/ellipse.c -------------------------------------------------------------------------------- /modules/graphics/library/drawing/line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/graphics/library/drawing/line.c -------------------------------------------------------------------------------- /modules/graphics/library/drawing/rect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/graphics/library/drawing/rect.c -------------------------------------------------------------------------------- /modules/graphics/library/drawing/triangle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/graphics/library/drawing/triangle.c -------------------------------------------------------------------------------- /modules/graphics/library/fonts/default.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/graphics/library/fonts/default.c -------------------------------------------------------------------------------- /modules/graphics/library/raw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/graphics/library/raw.c -------------------------------------------------------------------------------- /modules/graphics/library/setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/graphics/library/setup.c -------------------------------------------------------------------------------- /modules/input/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/input/CMakeLists.txt -------------------------------------------------------------------------------- /modules/input/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/input/Makefile -------------------------------------------------------------------------------- /modules/input/app/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/input/app/main.c -------------------------------------------------------------------------------- /modules/input/dependencies.info: -------------------------------------------------------------------------------- 1 | # 2 | # Dependencies 3 | # 4 | common 5 | usb -------------------------------------------------------------------------------- /modules/input/documents/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/input/documents/input.md -------------------------------------------------------------------------------- /modules/input/include/input_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/input/include/input_module.h -------------------------------------------------------------------------------- /modules/input/include/input_module_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/input/include/input_module_local.h -------------------------------------------------------------------------------- /modules/input/include/usb_keycodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/input/include/usb_keycodes.h -------------------------------------------------------------------------------- /modules/input/library/gamepad/drivers/snespad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/input/library/gamepad/drivers/snespad.c -------------------------------------------------------------------------------- /modules/input/library/gamepad/generic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/input/library/gamepad/generic.c -------------------------------------------------------------------------------- /modules/input/library/keyboard/locale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/input/library/keyboard/locale.c -------------------------------------------------------------------------------- /modules/input/library/keyboard/locale_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/input/library/keyboard/locale_data.c -------------------------------------------------------------------------------- /modules/input/library/keyboard/process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/input/library/keyboard/process.c -------------------------------------------------------------------------------- /modules/input/library/keyboard/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/input/library/keyboard/queue.c -------------------------------------------------------------------------------- /modules/input/library/keyboard/status.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/input/library/keyboard/status.c -------------------------------------------------------------------------------- /modules/input/library/mouse/mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/input/library/mouse/mouse.c -------------------------------------------------------------------------------- /modules/input/library/reports.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/input/library/reports.c -------------------------------------------------------------------------------- /modules/memory/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/memory/CMakeLists.txt -------------------------------------------------------------------------------- /modules/memory/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/memory/Makefile -------------------------------------------------------------------------------- /modules/memory/app/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/memory/app/main.c -------------------------------------------------------------------------------- /modules/memory/dependencies.info: -------------------------------------------------------------------------------- 1 | # 2 | # Dependencies 3 | # 4 | common 5 | psram -------------------------------------------------------------------------------- /modules/memory/documents/memory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/memory/documents/memory.md -------------------------------------------------------------------------------- /modules/memory/include/memory_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/memory/include/memory_module.h -------------------------------------------------------------------------------- /modules/memory/include/memory_module_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/memory/include/memory_module_local.h -------------------------------------------------------------------------------- /modules/memory/library/setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/memory/library/setup.c -------------------------------------------------------------------------------- /modules/memory/library/tracker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/memory/library/tracker.c -------------------------------------------------------------------------------- /modules/modes/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/modes/CMakeLists.txt -------------------------------------------------------------------------------- /modules/modes/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/modes/Makefile -------------------------------------------------------------------------------- /modules/modes/app/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/modes/app/main.c -------------------------------------------------------------------------------- /modules/modes/dependencies.info: -------------------------------------------------------------------------------- 1 | # 2 | # Dependencies 3 | # 4 | common 5 | dvi 6 | usb -------------------------------------------------------------------------------- /modules/modes/documents/memory.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/modes/documents/memory.ods -------------------------------------------------------------------------------- /modules/modes/documents/modes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/modes/documents/modes.md -------------------------------------------------------------------------------- /modules/modes/include/modes_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/modes/include/modes_module.h -------------------------------------------------------------------------------- /modules/modes/include/modes_module_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/modes/include/modes_module_local.h -------------------------------------------------------------------------------- /modules/modes/library/modes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/modes/library/modes.c -------------------------------------------------------------------------------- /modules/modes/library/modesetup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/modes/library/modesetup.c -------------------------------------------------------------------------------- /modules/psram/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/psram/CMakeLists.txt -------------------------------------------------------------------------------- /modules/psram/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/psram/Makefile -------------------------------------------------------------------------------- /modules/psram/app/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/psram/app/main.c -------------------------------------------------------------------------------- /modules/psram/dependencies.info: -------------------------------------------------------------------------------- 1 | # 2 | # Dependencies 3 | # 4 | common -------------------------------------------------------------------------------- /modules/psram/documents/psram.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/psram/documents/psram.md -------------------------------------------------------------------------------- /modules/psram/include/psram_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/psram/include/psram_module.h -------------------------------------------------------------------------------- /modules/psram/include/psram_module_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/psram/include/psram_module_local.h -------------------------------------------------------------------------------- /modules/psram/include/rp2350pc_psram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/psram/include/rp2350pc_psram.h -------------------------------------------------------------------------------- /modules/psram/library/rp2350pc_psram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/psram/library/rp2350pc_psram.c -------------------------------------------------------------------------------- /modules/psram/library/setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/psram/library/setup.c -------------------------------------------------------------------------------- /modules/sprites/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/sprites/CMakeLists.txt -------------------------------------------------------------------------------- /modules/sprites/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/sprites/Makefile -------------------------------------------------------------------------------- /modules/sprites/app/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/sprites/app/main.c -------------------------------------------------------------------------------- /modules/sprites/dependencies.info: -------------------------------------------------------------------------------- 1 | # 2 | # Dependencies 3 | # 4 | common 5 | usb 6 | dvi 7 | modes -------------------------------------------------------------------------------- /modules/sprites/documents/sprites.md: -------------------------------------------------------------------------------- 1 | # Documentation for sprites 2 | -------------------------------------------------------------------------------- /modules/sprites/include/sprites_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/sprites/include/sprites_module.h -------------------------------------------------------------------------------- /modules/sprites/include/sprites_module_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/sprites/include/sprites_module_local.h -------------------------------------------------------------------------------- /modules/text/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/text/CMakeLists.txt -------------------------------------------------------------------------------- /modules/text/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/text/Makefile -------------------------------------------------------------------------------- /modules/text/app/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/text/app/main.c -------------------------------------------------------------------------------- /modules/text/dependencies.info: -------------------------------------------------------------------------------- 1 | # 2 | # Dependencies 3 | # 4 | common 5 | usb 6 | dvi 7 | modes 8 | graphics -------------------------------------------------------------------------------- /modules/text/documents/text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/text/documents/text.md -------------------------------------------------------------------------------- /modules/text/include/text_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/text/include/text_module.h -------------------------------------------------------------------------------- /modules/text/include/text_module_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/text/include/text_module_local.h -------------------------------------------------------------------------------- /modules/text/library/setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/text/library/setup.c -------------------------------------------------------------------------------- /modules/text/library/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/text/library/write.c -------------------------------------------------------------------------------- /modules/usb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/usb/CMakeLists.txt -------------------------------------------------------------------------------- /modules/usb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/usb/Makefile -------------------------------------------------------------------------------- /modules/usb/app/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/usb/app/main.c -------------------------------------------------------------------------------- /modules/usb/dependencies.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/usb/dependencies.info -------------------------------------------------------------------------------- /modules/usb/documents/usb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/usb/documents/usb.md -------------------------------------------------------------------------------- /modules/usb/include/diskio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/usb/include/diskio.h -------------------------------------------------------------------------------- /modules/usb/include/ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/usb/include/ff.h -------------------------------------------------------------------------------- /modules/usb/include/ffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/usb/include/ffconf.h -------------------------------------------------------------------------------- /modules/usb/include/tusb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/usb/include/tusb_config.h -------------------------------------------------------------------------------- /modules/usb/include/usb_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/usb/include/usb_module.h -------------------------------------------------------------------------------- /modules/usb/include/usb_module_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/usb/include/usb_module_local.h -------------------------------------------------------------------------------- /modules/usb/library/fatfs/ff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/usb/library/fatfs/ff.c -------------------------------------------------------------------------------- /modules/usb/library/fatfs/ffsystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/usb/library/fatfs/ffsystem.c -------------------------------------------------------------------------------- /modules/usb/library/fatfs/ffunicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/usb/library/fatfs/ffunicode.c -------------------------------------------------------------------------------- /modules/usb/library/fileio/directory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/usb/library/fileio/directory.c -------------------------------------------------------------------------------- /modules/usb/library/fileio/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/usb/library/fileio/file.c -------------------------------------------------------------------------------- /modules/usb/library/fileio/filedirect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/usb/library/fileio/filedirect.c -------------------------------------------------------------------------------- /modules/usb/library/fileio/filesupport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/usb/library/fileio/filesupport.c -------------------------------------------------------------------------------- /modules/usb/library/hid_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/usb/library/hid_handler.c -------------------------------------------------------------------------------- /modules/usb/library/msc_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/usb/library/msc_handler.c -------------------------------------------------------------------------------- /modules/usb/library/usb_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/modules/usb/library/usb_handler.c -------------------------------------------------------------------------------- /other/data/localisation/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/other/data/localisation/Makefile -------------------------------------------------------------------------------- /other/data/localisation/extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/other/data/localisation/extract.py -------------------------------------------------------------------------------- /other/data/localisation/layouts/de.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/other/data/localisation/layouts/de.xml -------------------------------------------------------------------------------- /other/data/localisation/layouts/dk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/other/data/localisation/layouts/dk.xml -------------------------------------------------------------------------------- /other/data/localisation/layouts/fi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/other/data/localisation/layouts/fi.xml -------------------------------------------------------------------------------- /other/data/localisation/layouts/fr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/other/data/localisation/layouts/fr.xml -------------------------------------------------------------------------------- /other/data/localisation/layouts/get.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/other/data/localisation/layouts/get.sh -------------------------------------------------------------------------------- /other/data/localisation/layouts/it.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/other/data/localisation/layouts/it.xml -------------------------------------------------------------------------------- /other/data/localisation/layouts/no.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/other/data/localisation/layouts/no.xml -------------------------------------------------------------------------------- /other/data/localisation/layouts/pl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/other/data/localisation/layouts/pl.xml -------------------------------------------------------------------------------- /other/data/localisation/layouts/se.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/other/data/localisation/layouts/se.xml -------------------------------------------------------------------------------- /other/data/localisation/layouts/uk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/other/data/localisation/layouts/uk.xml -------------------------------------------------------------------------------- /other/data/localisation/layouts/us.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/other/data/localisation/layouts/us.xml -------------------------------------------------------------------------------- /other/data/localisation/scantousb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/other/data/localisation/scantousb.py -------------------------------------------------------------------------------- /other/experiments/blinky/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/other/experiments/blinky/CMakeLists.txt -------------------------------------------------------------------------------- /other/experiments/blinky/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/other/experiments/blinky/Makefile -------------------------------------------------------------------------------- /other/experiments/blinky/blinky.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/other/experiments/blinky/blinky.c -------------------------------------------------------------------------------- /other/experiments/hstx_demo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/other/experiments/hstx_demo/CMakeLists.txt -------------------------------------------------------------------------------- /other/experiments/hstx_demo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/other/experiments/hstx_demo/Makefile -------------------------------------------------------------------------------- /other/experiments/hstx_demo/dvi_out_hstx_encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/other/experiments/hstx_demo/dvi_out_hstx_encoder.c -------------------------------------------------------------------------------- /other/experiments/hstx_demo/mountains_640x480_rgb332.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/other/experiments/hstx_demo/mountains_640x480_rgb332.h -------------------------------------------------------------------------------- /other/experiments/psram/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/other/experiments/psram/CMakeLists.txt -------------------------------------------------------------------------------- /other/experiments/psram/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/other/experiments/psram/Makefile -------------------------------------------------------------------------------- /other/experiments/psram/psram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/other/experiments/psram/psram.c -------------------------------------------------------------------------------- /other/experiments/psram/rp2_psram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/other/experiments/psram/rp2_psram.c -------------------------------------------------------------------------------- /other/experiments/psram/rp2_psram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/other/experiments/psram/rp2_psram.h -------------------------------------------------------------------------------- /other/experiments/sdl2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/other/experiments/sdl2/CMakeLists.txt -------------------------------------------------------------------------------- /other/experiments/sdl2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/other/experiments/sdl2/Makefile -------------------------------------------------------------------------------- /other/experiments/sdl2/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/other/experiments/sdl2/main.c -------------------------------------------------------------------------------- /other/experiments/serial/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/other/experiments/serial/CMakeLists.txt -------------------------------------------------------------------------------- /other/experiments/serial/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/other/experiments/serial/Makefile -------------------------------------------------------------------------------- /other/experiments/serial/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/other/experiments/serial/serial.c -------------------------------------------------------------------------------- /other/experiments/usbhost/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/other/experiments/usbhost/CMakeLists.txt -------------------------------------------------------------------------------- /other/experiments/usbhost/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/other/experiments/usbhost/LICENSE.TXT -------------------------------------------------------------------------------- /other/experiments/usbhost/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/other/experiments/usbhost/Makefile -------------------------------------------------------------------------------- /other/experiments/usbhost/cdc_app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/other/experiments/usbhost/cdc_app.c -------------------------------------------------------------------------------- /other/experiments/usbhost/hid_app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/other/experiments/usbhost/hid_app.c -------------------------------------------------------------------------------- /other/experiments/usbhost/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/other/experiments/usbhost/main.c -------------------------------------------------------------------------------- /other/experiments/usbhost/msc_app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/other/experiments/usbhost/msc_app.c -------------------------------------------------------------------------------- /other/experiments/usbhost/tusb_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/other/experiments/usbhost/tusb_config.h -------------------------------------------------------------------------------- /other/old/console/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/other/old/console/CMakeLists.txt -------------------------------------------------------------------------------- /other/old/console/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/other/old/console/Makefile -------------------------------------------------------------------------------- /other/old/console/app/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/other/old/console/app/main.c -------------------------------------------------------------------------------- /other/old/console/dependencies.info: -------------------------------------------------------------------------------- 1 | # 2 | # Dependencies 3 | # 4 | common 5 | dvi 6 | modes 7 | graphics -------------------------------------------------------------------------------- /other/old/console/documents/console.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/other/old/console/documents/console.md -------------------------------------------------------------------------------- /other/old/console/include/console_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/other/old/console/include/console_module.h -------------------------------------------------------------------------------- /other/old/console/include/console_module_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/other/old/console/include/console_module_local.h -------------------------------------------------------------------------------- /other/old/console/library/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/other/old/console/library/console.c -------------------------------------------------------------------------------- /other/old/console/library/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/other/old/console/library/write.c -------------------------------------------------------------------------------- /other/prebuilt/blinky_arm.uf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/other/prebuilt/blinky_arm.uf2 -------------------------------------------------------------------------------- /other/prebuilt/blinky_riscv.uf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/other/prebuilt/blinky_riscv.uf2 -------------------------------------------------------------------------------- /runtime/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/runtime/CMakeLists.txt -------------------------------------------------------------------------------- /runtime/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/runtime/Makefile -------------------------------------------------------------------------------- /runtime/include/runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/runtime/include/runtime.h -------------------------------------------------------------------------------- /runtime/include/usb_keycodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/runtime/include/usb_keycodes.h -------------------------------------------------------------------------------- /runtime/source/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/runtime/source/common.c -------------------------------------------------------------------------------- /runtime/source/fileio/directory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/runtime/source/fileio/directory.c -------------------------------------------------------------------------------- /runtime/source/fileio/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/runtime/source/fileio/file.c -------------------------------------------------------------------------------- /runtime/source/fileio/filedirect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/runtime/source/fileio/filedirect.c -------------------------------------------------------------------------------- /runtime/source/fileio/filesupport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/runtime/source/fileio/filesupport.c -------------------------------------------------------------------------------- /runtime/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/runtime/source/main.c -------------------------------------------------------------------------------- /runtime/source/psram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/runtime/source/psram.c -------------------------------------------------------------------------------- /runtime/source/render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/runtime/source/render.c -------------------------------------------------------------------------------- /runtime/source/sound/sound.c.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/runtime/source/sound/sound.c.x -------------------------------------------------------------------------------- /runtime/source/system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/runtime/source/system.c -------------------------------------------------------------------------------- /runtime/source/usb/gamepad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/runtime/source/usb/gamepad.c -------------------------------------------------------------------------------- /runtime/source/usb/keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/runtime/source/usb/keyboard.c -------------------------------------------------------------------------------- /runtime/source/usb/mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/runtime/source/usb/mouse.c -------------------------------------------------------------------------------- /runtime/source/usb/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulscottrobson/rp2350pc/HEAD/runtime/source/usb/usb.c -------------------------------------------------------------------------------- /runtime/storage/keep.txt: -------------------------------------------------------------------------------- 1 | 2 | --------------------------------------------------------------------------------