MCUME/MCUME_pico2
jean-marcharvengt 27f6b906ac add preliminary sound to 1040ST emu 2025-08-24 21:48:00 +02:00
..
bin add preliminary sound to 1040ST emu 2025-08-24 21:48:00 +02:00
build add pico2 HDMI support 2025-01-26 17:25:30 +01:00
config add preliminary sound to 1040ST emu 2025-08-24 21:48:00 +02:00
display add pio_usb support and fix few sound issues 2025-05-04 20:08:42 +02:00
fatfs add pico2 HDMI support 2025-01-26 17:25:30 +01:00
flash add sega genesis emu 2025-02-02 20:59:51 +01:00
pico20 add pio_usb support and fix few sound issues 2025-05-04 20:08:42 +02:00
pico64 add pio_usb support and fix few sound issues 2025-05-04 20:08:42 +02:00
pico81 add pio_usb support and fix few sound issues 2025-05-04 20:08:42 +02:00
pico800 add pio_usb support and fix few sound issues 2025-05-04 20:08:42 +02:00
pico5200 add pio_usb support and fix few sound issues 2025-05-04 20:08:42 +02:00
pico8086 add pio_usb support and fix few sound issues 2025-05-04 20:08:42 +02:00
picoaiie add apple2 emulation 2025-05-18 21:22:42 +02:00
picocastaway add preliminary sound to 1040ST emu 2025-08-24 21:48:00 +02:00
picocolem add pio_usb support and fix few sound issues 2025-05-04 20:08:42 +02:00
picogb add preliminary sound to 1040ST emu 2025-08-24 21:48:00 +02:00
picogen add pio_usb support and fix few sound issues 2025-05-04 20:08:42 +02:00
picomsx add pio_usb support and fix few sound issues 2025-05-04 20:08:42 +02:00
picoo2em add pio_usb support and fix few sound issues 2025-05-04 20:08:42 +02:00
picopce add pio_usb support and fix few sound issues 2025-05-04 20:08:42 +02:00
picosms add pio_usb support and fix few sound issues 2025-05-04 20:08:42 +02:00
picospeccy add pio_usb support and fix few sound issues 2025-05-04 20:08:42 +02:00
picovcs add pio_usb support and fix few sound issues 2025-05-04 20:08:42 +02:00
psram add initial PSRAM QSPI support 2025-08-20 21:03:16 +02:00
psramfast add preliminary sound to 1040ST emu 2025-08-24 21:48:00 +02:00
sd_driver add pico2 HDMI support 2025-01-26 17:25:30 +01:00
testkeymax add initial PSRAM QSPI support 2025-08-20 21:03:16 +02:00
testpsram add preliminary sound to 1040ST emu 2025-08-24 21:48:00 +02:00
usb_kbd add AtariST emulation 2025-02-18 20:49:00 +01:00
.DS_Store add preliminary sound to 1040ST emu 2025-08-24 21:48:00 +02:00
CMakeLists.txt add preliminary sound to 1040ST emu 2025-08-24 21:48:00 +02:00
ffconf.h add pico2 HDMI support 2025-01-26 17:25:30 +01:00
pico_sdk_import.cmake add pico2 HDMI support 2025-01-26 17:25:30 +01:00
readme.txt add initial PSRAM QSPI support 2025-08-20 21:03:16 +02:00
tusb_config.h add initial PSRAM QSPI support 2025-08-20 21:03:16 +02:00

readme.txt

# Install PICO-SDK (or update it)
Use pico-sdk 2.2.0 (for RP2350, pico2)
------------------------------------
git clone -b master https://github.com/raspberrypi/pico-sdk.git
cd pico-sdk/
git submodule update --init
REPLACE tinyusb with latest version(!):
cd lib
mv tinyusb tinyusb_old
git clone https://github.com/hathach/tinyusb.git
mv tinyusb-master tinyusb
cd tinyusb
python3 tools/get_deps.py rp2040

# Export PICO_SDK_PATH (e.g.)
export PICO_SDK_PATH=/Users/jean-marcharvengt/Documents/pico/pico-sdk-2.2.0 (path to pico-sdk!)

# Compile the project
Go to project dir (e.g. MCUME/MCUME_pico2):
mkdir build
cd build
pico2/2w: cmake -DPICO_PLATFORM=rp2350 -DPICO_BOARD=pico2 ..
make