在树莓派 Pico 上运行 AWTK

本文档只在 MacOS 上验证过,Ubuntu 请根据情况自行调整。

0. 安装环境

  • cmake
sh 复制代码
brew install cmake
  • openocd
sh 复制代码
brew install openocd
  • arm-none-eabi-gcc

用 brew 安装的版本会出现如下错误:

sh 复制代码
arm-none-eabi-gcc: fatal error: cannot read spec file 'nosys.specs': No such file or directory

用 arm 官方的版本没有问题。

sh 复制代码
cd ~/Downloads
wget https://developer.arm.com/-/media/Files/downloads/gnu/13.3.rel1/binrel/arm-gnu-toolchain-13.3.rel1-darwin-arm64-arm-none-eabi.tar.xz

cd /opt
sudo tar xf ~/Downloads/arm-gnu-toolchain-13.3.rel1-darwin-arm64-arm-none-eabi.tar.xz
  • arm-none-eabi-gdb
sh 复制代码
brew install arm-none-eabi-gdb
  • minicom
sh 复制代码
brew install minicom

1. 下载源码

  • 下载 awtk-pico
sh 复制代码
https://github.com/zlgopen/awtk-pico.git

2. 编译

  • 编译 awtk

    cd src/awtk
    scons
    cd -

  • 生成 demo 资源

    cd src/demos/hello
    python scripts/update_res.py all
    cd -

  • 编译 pico 固件

请编辑 build_rp2040.sh,修改 PICO_TOOLCHAIN_PATH 为实际路径。

sh 复制代码
./build_rp2040.sh

3. 烧录

  • 方法 1

    按住按钮,插上电源。 会加载一个磁盘分区,把固件拷贝到该磁盘分区。完成后,会自动重启。

  • 方法 2

使用 openocd 烧录。

sh 复制代码
./upload.sh ./build_rp2040/src/demos/app.elf

4. 调试

请确认连接了 pico debug probe。

  • 启动 openocd
sh 复制代码
./start_debug.sh 
  • 启动 gdb
sh 复制代码
./debug.sh 

5. 硬件说明

测试所用显示屏的尺寸为 3.5 寸,分辨率为 480x320,微雪 出品,如果使用其它硬件, 代码需要做相应调整。

注意事项

  • 为了将字体和图片等资源数据编译到代码中,需要修改示例项目的 project.json 文件:

    "const": "all_data",

参考:src/demos/hello/project.json

7. 参考资源

相关推荐
李先静11 天前
如何用 SSH 访问 QNX 虚拟机
ssh·awtk·qnx
dzj202116 天前
Unity发布android Pico报错——CommandInvokationFailure: Gradle build failed踩坑记录
android·unity·gradle·报错·pico
十画_82419 天前
VR 合成层最多支持多少层?
vr·pico
十画_82420 天前
Unity Pico 应用失去焦点后,追踪功能被禁用(原生 UI 界面弹出)
ui·pico
十画_8241 个月前
如何为运行在 PICO 4 Ultra 设备上的项目设置外部文件读写权限?
mr·pico
李先静1 个月前
用 gdbserver 调试 arm-linux 上的 AWTK 应用程序
linux·arm开发·awtk
李先静1 个月前
MacOS 下 pico/pico2 学习笔记
pico
萌萌的提莫队长2 个月前
PICO 获取设备号 SN码
vr·pico·sn·id
李先静2 个月前
AWTK-WIDGET-WEB-VIEW 实现笔记 (3) - MacOS
macos·webview·awtk