本帖最后由 dql2016 于 2023-2-19 19:21 编辑
开发环境搭建
https://device.harmonyos.com/cn/docs/documentation/guide/ide-install-windows-ubuntu-0000001194073744
代码获取
https://gitee.com/openharmony/docs/blob/HEAD/zh-cn/device-dev/get-code/sourcecode-acquire.md#https://gitee.com/help/articles/4191
官方教程
https://gitee.com/openharmony/device_soc_hpmicro#https://gitee.com/openharmony/docs/blob/HEAD/zh-cn/device-dev/get-code/sourcecode-acquire.md
执行如下命令安装码云repo工具:
mkdir ~/bin
curl https://gitee.com/oschina/repo/raw/fork_flow/repo-py3 -o ~/bin/repo
chmod a+x ~/bin/repo
pip3 install -i https://repo.huaweicloud.com/repository/pypi/simple requests
将repo添加到环境变量。
vim ~/.bashrc # 编辑环境变量
export PATH=~/bin:$PATH # 在环境变量的最后添加一行repo路径信息
source ~/.bashrc # 应用环境变量
OpenHarmony主干代码获取:通过repo + ssh下载
repo init -u git@gitee.com:openharmony/manifest.git -b master --no-repo-verify
repo sync -c
repo forall -c 'git lfs pull'
开始编译:
sudo ./build/prebuilts_download.sh
执行hb set
选择hpmicro
下的hpm6750evk2
执行hb build -f
进行工程编译,编译成功后显示如下内容:
使用HPMProgrammer将out/hpm6750evk2/hpm6750evk2/OHOS_Image.bin烧录到开发板后,启动效果如下: