Openharmony 设备开发之helloworld (L2)

Openharmony 设备开发之helloworld (L2)

​想了解更多内容,请访问:​

​51CTO和华为官方合作共建的鸿蒙技术社区​

​https://harmonyos.51cto.com​

一、简介

  1. 介绍子系统添加
  2. 介绍静态编译
  3. 介绍动态库编译
  4. 介绍动态库和静态库的调用

入门了解设备开发:

partA/feature1编译的静态库,

partB/module编译的是动态库

partA/feature2可执行程序中调用动态库和静态库

Openharmony 设备开发之helloworld (L2)

二、代码添加编译

2.1 子系统添加

配置文件:build/subsystem_config.json

,
"sub_example": {
"project": "hmf/test",
"path": "test/example",
"name": "sub_example",
"dir": "test"
}

如果自己想自定义目录,test为测试代码放在目录路径。

2.2 子模块添加

配置文件:productdefine/common/products/Hi3516DV300.json

{
"product_name": "Hi3516DV300",
"product_company": "hisilicon",
"product_device": "hi3516dv300",
"version": "2.0",
"type": "standard",
"product_build_path": "device/hisilicon/build",
"parts":{

"sub_example:partB":{},
"sub_example:partA":{}
}
}

2.3 模块partA/feature1

目录结构

Openharmony 设备开发之helloworld (L2)

编译配置文件:testexamplepartAfeature1BUILD.gn

import("//build/ohos.gni")

config("helloworld1_lib_config") {
include_dirs = [ "include" ]
}
ohos_static_library("libhelloworl1_lib") {
output_extension = "a"
sources = [
"include/helloworld1.h",
"src/helloworld1.c"
]
public_configs = [ ":helloworld1_lib_config" ]
part_name = "partA"
}

其中ohos_static_library标准系统是ninja生成静态库的关键。

2.4 模块partB/module

目录结构

Openharmony 设备开发之helloworld (L2)

配置文件testexamplepartBmoduleBUILD.gn

import("//build/ohos.gni")

config("module_lib_config") {
include_dirs = [ "include" ]
}

ohos_shared_library("module_lib") {
sources = [
"//test/example/partB/module/include/module.h",
"//test/example/partB/module/src/module.c"
]
public_configs = [ ":module_lib_config" ]
part_name = "partB"
subsystem_name = "sub_example"
}

其中ohos_shared_library标准系统是ninja生成动态库的关键。

2.5 动态库和静态库调用模块partA/feature2

目录结构

Openharmony 设备开发之helloworld (L2)

编译配置:testexamplepartAfeature2BUILD.gn

import("//build/ohos.gni")

ohos_executable("helloworld2_bin") {
sources = [
"src/helloworld2.c"
]
include_dirs = [
"include",
"//test/example/partB/module/include"
]
deps = [ # 组件内模块依赖
"../feature1:libhelloworl1_lib",
#"//test/example/partB/module:module_lib",
"../feature3:feature3_etc",
]
external_deps = [ "partB:module_lib", ] # 跨组件的依赖,格式为“组件名:模块名”
install_enable = true # 可执行程序缺省不安装,需要安装时需要指定
part_name = "partA"
subsystem_name = "sub_example"
}

调用的C代码:testexamplepartAfeature2srchelloworld2.c

#include "helloworld1.h" // 模块partA/feature1
#include "module.h" // 模块partB/module
#include <stdio.h>

void helloworld2(void)
{
printf("[demo] hello world 2222n");
helloworld1(); // partA/feature1
module(); // partB/module
}

int main()
{
helloworld2();
return 0;
}

2.6 编译配置testexampleohos.build

配置中的inner_kits是testexamplepartAfeature2BUILD.gn跨组件依赖配置的关键。

{
"subsystem": "sub_example",
"parts": {
"partB": {
"module_list": [
"//test/example/partB/module:module_lib"
],
"inner_kits": [
{
"type": "so",
"name": "//test/example/partB/module:module_lib",
"header": {
"header_files": [
"module.h"
],
"header_base": "//test/example/partB/module/include"
}
}
],
"system_kits": [],
"test_list": []
},
"partA": {
"module_list": [
"//test/example/partA/feature1:libhelloworl1_lib",
"//test/example/partA/feature2:helloworld2_bin"
],
"inner_kits": [],
"system_kits": [],
"test_list": []
}
}
}

三、编译测试运行

3.1 编译:

./build.sh --product-name Hi3516DV300 --ccache --build-target helloworld2_bin

编译成功后,可以把编译好的helloworld2_bin和libmodule_lib.z.so用hdc_std.exe发送到Hi3516DV300开发板中去运行,在串口终端上输出调用结果。

3.2 修改系统权限,目录能读能写:

mount -o remount,rw /

3.3 发送文件到开发板:

hdc_std.exe file send Z:L2outohos-arm-releasesub_examplepartBlibmodule_lib.z.so /system/lib
//开发板目录/data/test为自建目录,没有的话,先创建。
hdc_std.exe file send Z:L2outohos-arm-releasesub_examplepartAhelloworld2_bin /data/test

3.3 修改成可执行权后:

chmod 0711 /data/test/helloworld2_bin

3.4 运行:

/data/test/helloworld2_bin

 Openharmony 设备开发之helloworld (L2)

文档中的代码没有完全展示,下载​​【源代码】​

重点关注目录:examplepartBmodule,examplepartAfeature1,examplepartAfeature2

代码库中的源码相对于文档中的代码有少许调整,基本结构不变.

​想了解更多内容,请访问:​

​51CTO和华为官方合作共建的鸿蒙技术社区​

​https://harmonyos.51cto.com​

Openharmony 设备开发之helloworld (L2)

文章版权声明

 1 原创文章作者:天空之城,如若转载,请注明出处: https://www.52hwl.com/93037.html

 2 温馨提示:软件侵权请联系469472785#qq.com(三天内删除相关链接)资源失效请留言反馈

 3 下载提示:如遇蓝奏云无法访问,请修改lanzous(把s修改成x)

 免责声明:本站为个人博客,所有软件信息均来自网络 修改版软件,加群广告提示为修改者自留,非本站信息,注意鉴别

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2024年1月16日 下午9:34
下一篇 2024年1月16日 下午9:35