From 048826bd80aea2b0a127705f8d9b7b24a29a4c32 Mon Sep 17 00:00:00 2001 From: hgv5 Date: Fri, 27 May 2022 17:42:04 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=9B=B4=E6=96=B0readme=E4=B8=AD?= =?UTF-8?q?=E7=9B=AE=E5=BD=95=E6=8F=8F=E8=BF=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: hgv5 --- README.md | 8 ++++++++ README_zh.md | 8 ++++++++ 2 files changed, 16 insertions(+) diff --git a/README.md b/README.md index 727122f..54474b7 100644 --- a/README.md +++ b/README.md @@ -15,18 +15,26 @@ This repository stores the code and compilation scripts for the OpenHarmony driv ├── utils # Compilation scripts for building and configuring the parsing code ├── manager # Code for starting and adapting to the HDF ├── model # Code for adapting to Linux +│ ├── audio # Audio driver model │ ├── display # Display driver model │ ├── input # Input driver model +│ ├── misc # Misc driver model, including dsoftbus, light, vibrator │ ├── network # WLAN driver model │ ├── sensor # Sensor driver model +│ ├── storage # Storage driver model +│ ├── usb # USB driver model ├── network # Code for adapting to the Linux kernel network ├── osal # POSIX APIs for adapting to the Linux kernel ├── platform # Code for adapting the platform APIs to the Linux kernel +│ ├── adc # ADC APIs │ ├── emmc # EMMC APIs │ ├── gpio # GPIO APIs │ ├── i2c # I2C APIs +│ ├── mipi_csi # MIPI CSI APIs │ ├── mipi_dsi # MIPI DSI APIs +│ ├── mmc # MMC APIs │ ├── pwm # PWM APIs +│ ├── regulator # Regulator APIs │ ├── rtc # RTC APIs │ ├── sdio # SDIO APIs │ ├── spi # SPI APIs diff --git a/README_zh.md b/README_zh.md index e3e74ac..496cab1 100644 --- a/README_zh.md +++ b/README_zh.md @@ -15,18 +15,26 @@ ├── utils #linux内核下编译配置解析代码的编译脚本 ├── manager #linux内核下启动适配启动HDF框架代码 ├── model #驱动模型适配linux代码 +│ ├── audio #音频驱动模型 │ ├── display #显示驱动模型 │ ├── input #输入驱动模型 +│ ├── misc #杂项驱动模型,包括dsoftbus、light、vibrator │ ├── network #wifi驱动模型 │ └── sensor #传感器驱动模型 +│ └── storage #存储驱动模型 +│ └── usb #USB驱动模型 ├── network #适配linux内核网络代码 ├── osal #适配linux内核的posix接口 ├── platform #平台设备接口适配linux内核代码 +│ ├── adc #adc接口 │ ├── emmc #emmc操作接口 │ ├── gpio #gpio接口 │ ├── i2c #i2c接口 +│ ├── mipi_csi #mipi csi接口 │ ├── mipi_dsi #mipi dsi接口 +│ ├── mmc #mmc接口 │ ├── pwm #pwm接口 +│ ├── regulator #regulator接口 │ ├── rtc #rtc接口 │ ├── sdio #sdio接口 │ ├── spi #spi接口