Example project to demonstrate the RNNoise audio noise suppression algorithm running on a Raspberry Pi Pico 2 board, using the RP2350's Cortex-M33 processor.
- RP2350 board
- Raspberry Pi Pico 2
- Microphones
Raspberry Pi Pico 2 / RP2350 | PDM Microphone |
---|---|
3.3V | VCC |
GND | GND |
GND | SEL |
GPIO 21 | DAT |
GPIO 20 | CLK |
GPIO pins are configurable in example.
See examples folder.
git clone https://github.com/ArmDeveloperEcosystem/rnnoise-examples-for-pico-2.git
- Set up the Pico C/C++ SDK
- Set
PICO_SDK_PATH
export PICO_SDK_PATH=/path/to/pico-sdk
- Create
build
dir, runcmake
andmake
:
mkdir build
cd build
cmake .. -DPICO_BOARD=pico2
make
- Copy example
.uf2
to Pico when in BOOT mode.
Disclaimer: This is not an official Arm product.