linster / e39-rpi-fw

E39-rpi-pico Firmware

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Pico Template

A simple C/C++ template for the Raspberry Pi pico using cmake.

CLion works great as an IDE.

Was made with help from the Getting Started guide

Requirements

MacOS

brew tap ArmMbed/homebrew-formulae
brew install arm-none-eabi-gcc cmake ninja

Debian/Ubuntu

sudo apt update
sudo apt install cmake gcc-arm-none-eabi libnewlib-arm-none-eabi build-essential ninja-build

Windows

Windows Subsystem for Linux (WSL) can be used to run Ubuntu.

Setup

Updates the pico-sdk sub-module, this may take a few minutes as its quite large.

git submodule update --init --recursive

Build

Creates a new build directory and uses ninja to build the .uf2 file.

mkdir build
cd build
cmake -G Ninja ..
ninja

Copy the .uf2 file from the build directory onto the pico to run

Serial console (MacOS)

ls /dev/tty.*
screen /dev/tty.usbmodem0000000000001

About

E39-rpi-pico Firmware


Languages

Language:C++ 79.6%Language:C 15.8%Language:CMake 4.5%Language:Shell 0.1%