依照教程:
1.零基础搭建小安派Windows 开发环境 https://bbs.ai-thinker.com/forum.php?mod=viewthread&tid=282
2.【祖传点灯】安信可Ai-M61-32S+从点灯到点亮芯片doge https://bbs.ai-thinker.com/forum.php?mod=viewthread&tid=44632
一、环境搭建的完整过程
因为已经安装过VS code及Git工具,就跳过此步骤。
1.克隆源码:git clone https://gitee.com/Ai-Thinker-Open/AiPi-Open-Kits.git -b master
2.用文本打开 .gitmodules 文件 url 参数中的 github.com 改成 gitee.com
3.git 工具中分别执行:
cd AiPi-Open-Kits/
git submodule init
git submodule update
cd aithinker_Ai-M6X_SDK/
git submodule init
git submodule update
[backcolor=rgba(27, 31, 35, 0.05)]
[backcolor=rgba(27, 31, 35, 0.05)]在 [backcolor=rgba(27, 31, 35, 0.05)]aithinker_Ai-M6X_SDK/ 文件夹中直接使用 git 工具:
git clone https://gitee.com/bouffalolab/toolchain_gcc_t-head_windows.git -b master
4.配置环境变量
aithinker_Ai-M6X_SDK\toolchain_gcc_t-head_windows\bin
aithinker_Ai-M6X_SDK\tools\make
aithinker_Ai-M6X_SDK\tools\ninja
验证配置是否成功设置:
make -v
riscv64-unknown-elf-gcc -v
5.(解决报错)用VS Code 打开路径AiPi-Open-Kits\aithinker_Ai-M6X_SDK\bsp\board\bl616dk中的board.c,添加//注释
用笔记本打开 /aithinker_Ai-M6X_SDK/project.build 文件,添加#注释
二、点灯过程
1.在 VScode 打开AiPi-Open-Kits 文件夹中的AiPi-Eyes_weather文件夹,鼠标右键选择在集成终端中打开:
2.然后在终端输入make:
3.在终端输入make flash COMX=COM3,随后按住板子按钮3,再按住按钮2,最后一起松开进入烧录模式:
4.出现[All Success]就代表成功
5.最后拔掉重插tpye-c线,重新连接板子,点灯成功!
|