This repo is similar to pico-examples but utilizing additional libraries from pico-extras
 
 
 
 
 
Go to file
Carl Drougge b1294e8289
Fix the VGA-schematic image (#20) (#41)
Several of the connections were wrong. The switched sync signals were
especially bad, as that means you get no picture at all.
2023-05-03 15:34:51 -05:00
apps popcorn: add converter 2021-02-26 21:16:04 -06:00
audio fix case of PICO_SCANVIDEO_48MHZ and fix test_pattern for lower bit depths 2022-05-17 16:03:20 -05:00
reset Initial Release 2021-01-20 11:16:37 -06:00
scanvideo Fix the VGA-schematic image (#20) (#41) 2023-05-03 15:34:51 -05:00
sleep Update hello_sleep.c 2021-01-27 19:17:00 -06:00
standalone Use latest version of upstream pico_sdk_import.cmake (#12) 2021-03-08 11:57:25 -06:00
stdio Initial Release 2021-01-20 11:16:37 -06:00
.gitignore Initial Release 2021-01-20 11:16:37 -06:00
CMakeLists.txt remove net demo which duplicates tinyusb/net_lwip_webserver 2021-06-02 13:34:13 -05:00
LICENSE.TXT Initial Release 2021-01-20 11:16:37 -06:00
README.md Fix link to VGA-schematic image (#26) 2023-02-10 09:24:16 -06:00
pico_extras_import.cmake Initial Release 2021-01-20 11:16:37 -06:00
pico_sdk_import.cmake pick up new version of pico_sdk_import.cmake - only really relevant to optimize git download of pico-sdk 2022-05-17 16:14:25 -05:00

README.md

This repo is similar to pico-examples but utilizing additional libraries from pico-extras

Note that most of these examples are neither fleshed out nor well documented. They mostly serve the purpose of playing with/testing particular areas of functionality (mostly audio/video related)

Finally, you may wonder why many of these demos set the system clock to 48Mhz. The reason is that until we had physical chips, we were running at a fixed 48Mhz system clock using an FPGA. Most of these examples were written before the RP2040 design was final, so they were all developed with that fixed 48MHz system clock. As a result some of the examples do things in a way that you wouldn't necessarily need to if you had more clock speed available (which you do), but on the plus side, you have that much more time to do even more things!

Full Applications

Name Description
popcorn This is a movie player for 30fps 320x240 movies with 44100 stereo sound, read in a custom format from SD card... it can even play backwards :-) Sample movie file linked from here.
usb_sound_card A no frills but functional USB sound card... hooked up via our old (pre TinyUSB) USB device stack. Keeping it around as it works nicely!

Audio

Name Description
sine_wave_i2s A simple sine wave audio output using I2S.
sine_wave_pwm A simple sine wave audio output using PWM.
sine_wave_spdif A simple sine wave audio output using S/PDIF.

Scanout Video

In scanout video, every pixel is driven by the PIO every frame, and a framebuffer is not (necessarily) used (which is useful when you only have 264K of RAM).

For a fuller description of scanout video see here

Name Screenshot Description
demo1 So named because it was the first demo program written that used video.. it is a bit dated now and hails from a time where there was much less RAM on the RP2040
flash_stream Streams video data out of flash fast enough to drive 640x480x60fps bitmap display
hscroll_dma_tiles A horizontal scrolling test app which uses a second video plane (PIO) to overlay sprites
mandelbrot A mandelbrot generator using a 320x240x16 framebuffer
mario_tiles Confusingly named as a reference to Super Mario Kart's tiled psuedo-3D rendering. This is similar to hscroll_dma_tiles except the whole tiled scrolling area is now rotated and zoomed.
scanvideo_minimal A very basic video output generator which generates a test pattern
render A very dated rendering library used by demo1 - avoid!
sprite A small sprite library used by sprite_demo
sprite_demo Some bouncing Eben heads
test_pattern Display color bars
textmode Shows off chained DMA to generate scanlines out of glyph fragments via DMA/PIO

The above are intended to be used with the VGA demo board as described in Hardware Design with RP2040 however it is possible to wire your own VGA output according to the following schematic:

Sleep

Examples of using low power mode; these use pico_sleep from pico_extras which is not yet stable.

Name Description
hello_dormant Demonstrates dormant mode
hello_sleep Demonstrates low power sleep and waking from RTC

Stdio

Examples of adding additional stdio support. Note the interface for stdio drivers is not yet considered stable even though it is in the Pico SDK

Name Description
stdio_pio Demonstrates adding a custom STDIO driver using a PIO UART