2021-01-28 19:59:31 +08:00
|
|
|
|
# Raspberry PICO
|
|
|
|
|
|
2021-01-28 22:09:28 +08:00
|
|
|
|
## Introduction
|
|
|
|
|
|
|
|
|
|
**Raspberry Pi Pico is a low-cost, high-performance microcontroller board with flexible digital interfaces.**
|
|
|
|
|
|
|
|
|
|
**Key features include:**
|
|
|
|
|
|
|
|
|
|
- RP2040 microcontroller chip designed by Raspberry Pi in the United Kingdom
|
|
|
|
|
- Dual-core Arm Cortex M0+ processor, flexible clock running up to 133 MHz
|
|
|
|
|
- 264KB of SRAM, and 2MB of on-board Flash memory
|
|
|
|
|
- Castellated module allows soldering direct to carrier boards
|
|
|
|
|
- USB 1.1 with device and host support
|
|
|
|
|
- Low-power sleep and dormant modes
|
|
|
|
|
|
|
|
|
|
- Drag-and-drop programming using mass storage over USB
|
|
|
|
|
- 26 × multi-function GPIO pins
|
|
|
|
|
- 2 × SPI, 2 × I2C, 2 × UART, 3 × 12-bit ADC, 16 × controllable PWM channels
|
|
|
|
|
- Accurate clock and timer on-chip
|
|
|
|
|
- Temperature sensor
|
|
|
|
|
- Accelerated floating-point libraries on-chip
|
|
|
|
|
- 8 × Programmable I/O (PIO) state machines for custom peripheral support
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
![Pico-R3-Pinout](figures/Pico-R3-Pinout.svg)
|
|
|
|
|
|
|
|
|
|
## Supported compiler
|
|
|
|
|
|
2023-10-10 19:53:50 +08:00
|
|
|
|
Support GCC 6 and above compilers.
|
2021-01-28 22:09:28 +08:00
|
|
|
|
|
|
|
|
|
## Program firmware
|
|
|
|
|
|
2023-09-28 08:46:43 +08:00
|
|
|
|
### Step 1: download pico sdk
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
pkgs --update
|
|
|
|
|
```
|
|
|
|
|
|
2023-10-10 19:53:50 +08:00
|
|
|
|
### Step 2: build
|
2021-01-28 19:59:31 +08:00
|
|
|
|
|
2021-02-02 14:32:44 +08:00
|
|
|
|
```bash
|
2021-01-28 19:59:31 +08:00
|
|
|
|
scons -c
|
|
|
|
|
scons
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
**gcc version >= 6.x.x**
|
|
|
|
|
|
2023-10-10 19:53:50 +08:00
|
|
|
|
### Step 3: flash
|
2021-01-28 22:09:28 +08:00
|
|
|
|
|
2021-02-02 14:32:44 +08:00
|
|
|
|
scons generates a UF2 file:
|
2021-01-28 19:59:31 +08:00
|
|
|
|
|
2021-02-02 14:32:44 +08:00
|
|
|
|
![elf2uf2](figures/elf2uf2.png)
|
2021-01-28 19:59:31 +08:00
|
|
|
|
|
|
|
|
|
- Copy the rtthread-pico.uf2 file to the "RPI-RP2" disk
|
|
|
|
|
- Then led blink.
|
|
|
|
|
|
2023-09-28 08:46:43 +08:00
|
|
|
|
Or you can use the picotool by:
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
picotool load rtthread-pico.uf2
|
|
|
|
|
picotool reboot
|
|
|
|
|
```
|
|
|
|
|
|
2021-01-28 22:09:28 +08:00
|
|
|
|
## Running Result
|
|
|
|
|
|
|
|
|
|
The output information on serial port should be like this:
|
2021-01-28 19:59:31 +08:00
|
|
|
|
|
2021-02-02 14:32:44 +08:00
|
|
|
|
```bash
|
2021-01-28 19:59:31 +08:00
|
|
|
|
\ | /
|
|
|
|
|
- RT - Thread Operating System
|
|
|
|
|
/ | \ 4.0.3 build Jan 28 2021
|
|
|
|
|
2006 - 2021 Copyright by rt-thread team
|
|
|
|
|
Hello, RT-Thread!
|
|
|
|
|
msh >
|
|
|
|
|
```
|
|
|
|
|
|
2021-01-28 22:09:28 +08:00
|
|
|
|
## Peripheral Condition
|
|
|
|
|
|
2021-03-24 19:56:48 +08:00
|
|
|
|
| Drive | Support | Remark |
|
|
|
|
|
| ----- | ------- | ------- |
|
|
|
|
|
| UART | Support | UART0/1 |
|
|
|
|
|
| GPIO | Support | 0-29 |
|
|
|
|
|
| I2C | - | - |
|
|
|
|
|
| RTC | - | - |
|
|
|
|
|
| SDIO | - | - |
|
|
|
|
|
| SPI | - | - |
|
|
|
|
|
| TIMER | - | - |
|
|
|
|
|
| WDT | - | - |
|
2021-01-28 22:09:28 +08:00
|
|
|
|
|