# 升级服务子系统
- [简介](#section11660541593)
- [目录](#section1464106163817)
- [约束](#section1718733212019)
- [使用](#section18867101215181)
- [相关仓](#section68521336131912)
## 简介
OTA(Over the Air)提供对设备远程升级能力,基于提供的接口进行二次开发后,可以让您的设备轻松支持OTA升级能力。
升级子系统对用户屏蔽了底层芯片的差异,对外提供了统一的升级接口。
## 目录
```
/base/update/ota_lite
├── frameworks # OTA升级实现,主要包括升级包解析效验、写入、升级的功能
├── interfaces/kits # OTA升级接口,对外接口存放目录
├── hals # 芯片适配层,比如实现海思芯片实现位于device\hisilicon\hardware\update
```
## 约束
升级子系统使用C语言编写,目前支持Hi3518EV300、Hi3516DV300、Hi3861开发板。如果您想接入其它芯片,通过实现vendor路径下的OpenHarmony集成接口,可以适配不同芯片的产品。目前仅支持全量包升级方式。
## 使用
添加对升级子系统的依赖,以hi3516dv300开发板为例。
- vendor\\hisilicon\\ipcamera\_hi3516dv300\_liteos\\config.json中添加update,在subsystem\_list字段下面添加:
```
{
"subsystem": "update",
"components": [
{ "component": "hota", "features": [] }
]
},
```
- 在build\\lite\\components下,添加update.json文件:
```
"components": [
{
"component": "hota",
"description": "",
"optional": "false",
"dirs": [
"base/update/ota_lite/frameworks",
"base/update/ota_lite/interfaces/kits"
],
"targets": [
"//base/update/ota_lite/frameworks:ota_lite"
],
......
```
- 添加测试代码,这里以test为例,将subsystem\_test加入到base\\update\\ota\_lite\\frameworks\\BUILD.gn中。
- 添加完上述的配置后,执行如下命令编译整个系统,烧录到3516芯片平台上即可体验OTA功能。
```
hb set
hb build
```
## 相关仓
**升级服务子系统**
[update\_ota\_lite](https://gitee.com/openharmony/update_ota_lite)
[device\_hisilicon\_hardware](https://gitee.com/openharmony/device_hisilicon_hardware)