update wiki

This commit is contained in:
cuu 2025-03-18 11:45:05 +08:00
parent 0ef37d87fe
commit f304bcaa35
1 changed files with 2 additions and 1 deletions

View File

@ -1,4 +1,4 @@
# Setting Up the Pico SDK on Linux for PicoMite Development # Setting Up the Pico SDK on Linux for PicoCalc Development
This guide walks you through setting up the Raspberry Pi Pico SDK on a Linux system for **PicoCalc** development. By the end, you'll have a working environment to compile and flash firmware to your Raspberry Pi Pico on PicoCalc. This guide walks you through setting up the Raspberry Pi Pico SDK on a Linux system for **PicoCalc** development. By the end, you'll have a working environment to compile and flash firmware to your Raspberry Pi Pico on PicoCalc.
@ -24,6 +24,7 @@ Navigate to a workspace directory and clone the official Raspberry Pi Pico SDK:
mkdir -p ~/pico && cd ~/pico mkdir -p ~/pico && cd ~/pico
git clone -b master https://github.com/raspberrypi/pico-sdk.git git clone -b master https://github.com/raspberrypi/pico-sdk.git
cd pico-sdk cd pico-sdk
git checkout tags/2.0.0 -b sdk2.0.0
git submodule update --init git submodule update --init
``` ```