Demo in Youtube:
Many acknolegements and thanks goes to Kevin from diyelectromusic and his webpage has many great and interesting details on the development of the port.
This port contains Len Shustek's miditones player and the app plays a short piece of song in miditones format. (miditonesFile.cpp)
- Install the "Raspberry Pi Pico" extension through VSCode.
- Clone this repository!
- At VSCode, Ctrl-Shift-P, then
Raspberry Pico: Configure CMake
. Do not useCMake: Clean
as it can break the compilation! - With the same Ctrl-Shift-P too, build the project with
Raspberry Pico: Compile Pico Project
.
Microdexed git hash: c30955409a
Picodexed git hash: ef7928f12d
- Raspberry Pi Pico 2
- I2S DAC. Has been tested with a PCM5102 and the Pimoroni Pico Audio Pack
-
This is still under testing. Currently it is running at 250MHz with 10-note polyphony and 44100Hz sampling rate and it does not stutter. I'd say it is way much better than the original port I did for the ESP32 too.
-
When it is in the original 150MHz, some of the instruments (especially with a longer sustaining ones) are outputting bubbling and stuttering noises when it hits a few notes together at 44100Hz. Still, it's much better than my older ESP32 port!
-
It is compiled for ARM Cortex-M33! Currently there are no plans on building this on the Hazard3 RISC-V cores.
-
For testing purposes, the USB and Serial MIDI modules are temporarily disabled.
-
There are clicking noises between note switches - this is mitigated by using an older version of the Miditones (v1.12) where there are note stops before the note change happens. This note stops allow the brief release of the note in the envelope generator and significantly minimizes the unpleasant noise.
-
Details of the hardware build can be found here: https://diyelectromusic.wordpress.com/2024/02/18/raspberry-pi-pico-synth_dexed-part-5/
-
Details of the MIDI implementation can be found here: https://diyelectromusic.wordpress.com/2024/02/16/raspberry-pi-pico-synth_dexed-part-4/
- Picodexed by Kevin from diyelectromusic.
- Thanks to paulober for assisting me in the build issue.