本文來源電子發(fā)燒友社區(qū),作者:春天一滿屋, 帖子地址:https://bbs.elecfans.com/jishu_2290898_1_1.html
環(huán)境搭建
Author: HonestQiao 喬幫主的docker環(huán)境適用于套件使用,具體參考網(wǎng)址:https://blog.51cto.com/harmonyos/5223948
VSCode連接到container中進行開發(fā)
-
安裝remote – container插件:
-
安裝完成后,在VSCode的左下角出現(xiàn)一個綠色的按鈕
-
連接到container中點擊attach to Running Container…
-
Attach到container以后,可以看到內(nèi)部的文件系統(tǒng):
這樣就能正常開發(fā)了創(chuàng)建HelloWorld
-
用VScoder打開路徑:/home/dist/OpenHarmony-v3.1-Release/applications/sample/wifi-iot/app
-
/app/BUILD.gn
import("http://build/lite/config/component/lite_component.gni")
lite_component("app") {
features = [
#"startup",
"myshow:myshow",
]
}
-
./app創(chuàng)建文件夾myshow,并建兩個文件BUILD.gn 和 myshow.c
BUILD.gnstatic_library("myshow") { sources = [ "myshow.c" ] include_dirs = [ "http://utils/native/lite/include", "http://kernel/liteos_m/kal/cmsis", "http://base/iot_hardware/peripheral/interfaces/kits", ]
}
myshow.c
#include
#include
#include "ohos_init.h"
#include "cmsis_os2.h"
#include "iot_gpio.h"
void mymain(void)
{
printf("[DEMO] Hello world.n");
}
SYS_RUN(mymain);
- 使用 hb set 選擇 wifiiot_hispark_pegasus
- 使用 hb build -f 生成bin
-
生成文件路徑:/home/dist/OpenHarmony-v3.1-Release/out/hispark_pegasus/wifiiot_hispark_pegasus
-
使用HiBurn.exe燒錄
-
串口驗證
至此可以愉快的進行開發(fā)了。
-
wi-fi
+關(guān)注
關(guān)注
14文章
2162瀏覽量
124762 -
HarmonyOS
+關(guān)注
關(guān)注
79文章
1980瀏覽量
30372 -
HiSpark
+關(guān)注
關(guān)注
1文章
156瀏覽量
6942
發(fā)布評論請先 登錄
相關(guān)推薦
評論