Information
Table Of Contents
Perquisite
Hardware
• Raspberry Pi Pico
• USB-A to Micro-USB cable
• HDMI cable
–
or here HDMI-to-VGA adapter and VGA cable (5V input was neces-
sary)
for ubuntu/debian:
sudo apt install cmake gcc-arm-none-eabi libnewlib-arm-none-eabi build-essential
for arch:
sudo pacman -S cmake arm-none-eabi-gcc arm-none-eabi-newlib base-devel
Pico C/C++ SDK:
create pico folder for various projects and get Pico C/C++ SDK:
cd ~
mkdir pico
cd pico
git clone https://github.com/raspberrypi/pico-sdk
cd pico-sdk
git submodule update --init
1