From 91bfb4ee68316756724781a641067b563e2bd447 Mon Sep 17 00:00:00 2001 From: Yan_yan Date: Thu, 29 Oct 2020 10:38:21 +0800 Subject: [PATCH] add component dir --- docs/.vuepress/config.js | 8 ++++++++ docs/.vuepress/sidebar.js | 6 ++++++ docs/doc/component/README.md | 11 +++++++++++ docs/doc/component/drvmodel.md | 1 + docs/doc/component/fs.md | 1 + docs/doc/component/gui.md | 1 + docs/doc/component/lib.md | 1 + 7 files changed, 29 insertions(+) create mode 100644 docs/doc/component/README.md create mode 100644 docs/doc/component/drvmodel.md create mode 100644 docs/doc/component/fs.md create mode 100644 docs/doc/component/gui.md create mode 100644 docs/doc/component/lib.md diff --git a/docs/.vuepress/config.js b/docs/.vuepress/config.js index e2f2059..cf0bc5d 100755 --- a/docs/.vuepress/config.js +++ b/docs/.vuepress/config.js @@ -47,6 +47,10 @@ module.exports = { text: '内核', link: '/doc/kernel/', }, + { + text: '组件', + link: '/doc/component/' + }, { text: '处理器', link: '/doc/processor/', @@ -117,6 +121,10 @@ module.exports = { title: '内核', children: getSidebarByCategory('kernel','en') }, + { + title: '组件', + children: getSidebarByCategory('component','en') + }, { title: '处理器', children: getSidebarByCategory('processor','en') diff --git a/docs/.vuepress/sidebar.js b/docs/.vuepress/sidebar.js index 652135e..b5b954f 100755 --- a/docs/.vuepress/sidebar.js +++ b/docs/.vuepress/sidebar.js @@ -8,6 +8,12 @@ const sidebar = { '/doc/kernel/synchron', '/doc/kernel/threadcommunication' ], + 'component': [ + '/doc/component/fs', + '/doc/component/drvmodel', + '/doc/component/lib', + '/doc/component/gui' + ], 'board': [ '/doc/board/aiit-arm32', '/doc/board/stm32f407-st-discovery', diff --git a/docs/doc/component/README.md b/docs/doc/component/README.md new file mode 100644 index 0000000..34471ba --- /dev/null +++ b/docs/doc/component/README.md @@ -0,0 +1,11 @@ +# 应用开发 + +--- + +* [文件系统](/doc/component/fs.md) + +* [驱动模型](/doc/component/drvmodel.md) + +* [第三方库](/doc/component/lib.md) + +* [GUI图形库](/doc/component/gui.md) diff --git a/docs/doc/component/drvmodel.md b/docs/doc/component/drvmodel.md new file mode 100644 index 0000000..caa6f2d --- /dev/null +++ b/docs/doc/component/drvmodel.md @@ -0,0 +1 @@ +# 驱动模型 \ No newline at end of file diff --git a/docs/doc/component/fs.md b/docs/doc/component/fs.md new file mode 100644 index 0000000..984c68f --- /dev/null +++ b/docs/doc/component/fs.md @@ -0,0 +1 @@ +# 文件系统 diff --git a/docs/doc/component/gui.md b/docs/doc/component/gui.md new file mode 100644 index 0000000..bce78b0 --- /dev/null +++ b/docs/doc/component/gui.md @@ -0,0 +1 @@ +# GUI引擎 \ No newline at end of file diff --git a/docs/doc/component/lib.md b/docs/doc/component/lib.md new file mode 100644 index 0000000..f73fc57 --- /dev/null +++ b/docs/doc/component/lib.md @@ -0,0 +1 @@ +# 第三方库 \ No newline at end of file