add component dir
This commit is contained in:
parent
4655445045
commit
91bfb4ee68
|
@ -47,6 +47,10 @@ module.exports = {
|
||||||
text: '内核',
|
text: '内核',
|
||||||
link: '/doc/kernel/',
|
link: '/doc/kernel/',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
text: '组件',
|
||||||
|
link: '/doc/component/'
|
||||||
|
},
|
||||||
{
|
{
|
||||||
text: '处理器',
|
text: '处理器',
|
||||||
link: '/doc/processor/',
|
link: '/doc/processor/',
|
||||||
|
@ -117,6 +121,10 @@ module.exports = {
|
||||||
title: '内核',
|
title: '内核',
|
||||||
children: getSidebarByCategory('kernel','en')
|
children: getSidebarByCategory('kernel','en')
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
title: '组件',
|
||||||
|
children: getSidebarByCategory('component','en')
|
||||||
|
},
|
||||||
{
|
{
|
||||||
title: '处理器',
|
title: '处理器',
|
||||||
children: getSidebarByCategory('processor','en')
|
children: getSidebarByCategory('processor','en')
|
||||||
|
|
|
@ -8,6 +8,12 @@ const sidebar = {
|
||||||
'/doc/kernel/synchron',
|
'/doc/kernel/synchron',
|
||||||
'/doc/kernel/threadcommunication'
|
'/doc/kernel/threadcommunication'
|
||||||
],
|
],
|
||||||
|
'component': [
|
||||||
|
'/doc/component/fs',
|
||||||
|
'/doc/component/drvmodel',
|
||||||
|
'/doc/component/lib',
|
||||||
|
'/doc/component/gui'
|
||||||
|
],
|
||||||
'board': [
|
'board': [
|
||||||
'/doc/board/aiit-arm32',
|
'/doc/board/aiit-arm32',
|
||||||
'/doc/board/stm32f407-st-discovery',
|
'/doc/board/stm32f407-st-discovery',
|
||||||
|
|
|
@ -0,0 +1,11 @@
|
||||||
|
# 应用开发
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
* [文件系统](/doc/component/fs.md)
|
||||||
|
|
||||||
|
* [驱动模型](/doc/component/drvmodel.md)
|
||||||
|
|
||||||
|
* [第三方库](/doc/component/lib.md)
|
||||||
|
|
||||||
|
* [GUI图形库](/doc/component/gui.md)
|
|
@ -0,0 +1 @@
|
||||||
|
# 驱动模型
|
|
@ -0,0 +1 @@
|
||||||
|
# 文件系统
|
|
@ -0,0 +1 @@
|
||||||
|
# GUI引擎
|
|
@ -0,0 +1 @@
|
||||||
|
# 第三方库
|
Loading…
Reference in New Issue