描述
本文来源电子发烧友社区,作者:张亭彪, 帖子地址:
https://bbs.elecfans.com/jishu_2018307_1_1.html尝试烧录官方例程在开发板上, 下面开发板上实现写自己的程序。在./applications/sample/wifi-iot/app目录下新建一个文件夹
-
#include
-
#include "ohos_init.h"
-
#include "ohos_types.h"
-
-
-
void FirstAPP(void)
-
{
-
printf("Hello!n");
-
}
-
SYS_RUN(FirstAPP);
-
复制代码
在my_first_app下新建BUILD.gn文件写入
-
static_library("myapp"){
-
sources = [
-
"FirstAPP.c"
-
include_dirs = [
-
"//utils/native/lite/include"
-
}
复制代码
在./applications/sample/wifi-iot/app/BUILD.gn文件里面修改成如下代码
import("//build/lite/config/component/lite_component.gni")
-
lite_component("app"){
-
features = [
-
"catkin_ws:myapp",
-
}
复制代码
编译烧录之后就可以看到串口输出Hello
打开APP阅读更多精彩内容