add component dir

This commit is contained in:
Yan_yan 2020-10-29 10:38:21 +08:00
parent 4655445045
commit 91bfb4ee68
7 changed files with 29 additions and 0 deletions

View File

@ -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')

View File

@ -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',

View File

@ -0,0 +1,11 @@
# 应用开发
---
* [文件系统](/doc/component/fs.md)
* [驱动模型](/doc/component/drvmodel.md)
* [第三方库](/doc/component/lib.md)
* [GUI图形库](/doc/component/gui.md)

View File

@ -0,0 +1 @@
# 驱动模型

1
docs/doc/component/fs.md Normal file
View File

@ -0,0 +1 @@
# 文件系统

View File

@ -0,0 +1 @@
# GUI引擎

View File

@ -0,0 +1 @@
# 第三方库