sudo apt install git git clone https://github.com/dawsonjon/PicoRX.git cd PicoRX git submodule init git submodule update
Follow the Getting started with the Raspberry Pi Pico quick start guide to install the C/C++ SDK.
sudo apt install wget #if wget not installed wget https://raw.githubusercontent.com/raspberrypi/pico-setup/master/pico_setup.sh chmod +x pico_setup.sh ./pico_setup.sh
Build the project using these cmake commands.
mkdir build cd build cmake -DPICO_BOARD=pico -DPICO_SDK_PATH=~/pico/pico-sdk .. make