From af93233596563b84ce970a6c2ca7a4533962ba29 Mon Sep 17 00:00:00 2001 From: gonghui Date: Wed, 2 Jun 2021 08:45:54 +0800 Subject: [PATCH] fix directory issue --- en/device-dev/driver/driver-development.md | 2 +- .../driver/\351\251\261\345\212\250\345\274\200\345\217\221.md" | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/en/device-dev/driver/driver-development.md b/en/device-dev/driver/driver-development.md index f9c14ec11f..8cbefc7cbb 100644 --- a/en/device-dev/driver/driver-development.md +++ b/en/device-dev/driver/driver-development.md @@ -71,7 +71,7 @@ Driver development based on the HDF consists of two parts: driver implementation - Use the **Makefile** template provided by the HDF to compile the driver code. ``` - include $(LITEOSTOPDIR)/../../drivers/adapter/lite/khdf/lite.mk # (Mandatory) Import the predefined content of the HDF. + include $(LITEOSTOPDIR)/../../drivers/adapter/khdf/liteos/lite.mk # (Mandatory) Import the predefined content of the HDF. MODULE_NAME := # Generated result file LOCAL_INCLUDE: = # Header file directory of the driver LOCAL_SRCS : = # Source code file of the driver diff --git "a/zh-cn/device-dev/driver/\351\251\261\345\212\250\345\274\200\345\217\221.md" "b/zh-cn/device-dev/driver/\351\251\261\345\212\250\345\274\200\345\217\221.md" index e35139db59..b05a39a871 100755 --- "a/zh-cn/device-dev/driver/\351\251\261\345\212\250\345\274\200\345\217\221.md" +++ "b/zh-cn/device-dev/driver/\351\251\261\345\212\250\345\274\200\345\217\221.md" @@ -71,7 +71,7 @@ HDF框架以组件化的驱动模型作为核心设计思路,为开发者提 - 驱动代码的编译必须要使用HDF框架提供的Makefile模板进行编译。 ``` - include $(LITEOSTOPDIR)/../../drivers/adapter/lite/khdf/lite.mk #导入hdf预定义内容,必需 + include $(LITEOSTOPDIR)/../../drivers/adapter/khdf/liteos/lite.mk #导入hdf预定义内容,必需 MODULE_NAME := #生成的结果文件 LOCAL_INCLUDE := #本驱动的头文件目录 LOCAL_SRCS := #本驱动的源代码文件 -- GitLab