-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmkdocs.yml
270 lines (257 loc) · 9.22 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
# Project information
site_name: 100askTeam eLinux Code Library
site_url: https://github.com/100askTeam/LinuxCodeLibrary.git
site_author: 100askTeam
site_description: >-
100ASKTeam boards Start Page.
copyright: Copyright © 2008 - 2022 100ask Team
edit_uri: edit/master/docs/
#edit_uri: https://github.com/100askTeam/TutorialCo-creation/tree/master/docs
repo_url: https://github.com/100askTeam/LinuxCodeLibrary
repo_name: 100askTeam/LinuxCodeLibrary
# Configuration
theme:
name: material
custom_dir: overrides
# Static files
static_templates:
- 404.html
# Don't include MkDocs' JavaScript
include_search_page: true
search_index_only: true
# Default values, taken from mkdocs_theme.yml
language: zh
features:
- content.code.annotate
# - content.tabs.link
- header.autohide
# - navigation.expand
- navigation.indexes
# - navigation.instant
# - navigation.sections
- navigation.tabs
# - navigation.tabs.sticky
- navigation.top
- navigation.tracking
- search.highlight
- search.share
- search.suggest
# - toc.follow
# - toc.integrate
palette:
- scheme: default
primary: teal
accent: indigo
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
- scheme: slate
primary: red
accent: red
toggle:
icon: material/toggle-switch
name: Switch to light mode
font:
text: Roboto
code: Roboto Mono
favicon: favicon.png
icon:
logo: dsp-logo
# Plugins
plugins:
- search
- markmap:
base_path: docs
encoding: utf-8
file_extension: .mm.md
d3_version: 6.7.0
lib_version: 0.14.1
view_version: 0.14.0
# - offline
- minify:
minify_html: true
# - social:
# cards_color:
# fill: "#0FF1CE"
# text: "#FFFFFF"
- search:
jieba_dict: dict.txt
extra:
analytics:
provider: google
property: G-LZX4K52CZ1
homepage: https://code.100ask.net
alternate:
- name: 中文简体
link: /
lang: zh
- name: English
link: /en/
lang: en
# disqus: dongshanpi-com
# Extensions
markdown_extensions:
- admonition
- abbr
- attr_list
- def_list
- footnotes
- meta
- md_in_html
- tables
- toc:
slugify: !!python/name:pymdownx.slugs.uslugify
- toc:
permalink: true
- toc:
title: On this page
- toc:
permalink_title: Anchor link to this section for reference
- toc:
toc_depth: 3
- pymdownx.arithmatex:
generic: true
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.details
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.magiclink:
repo_url_shorthand: true
user: squidfunk
repo: mkdocs-material
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.tilde
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.snippets
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
- def_list
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.critic
- pymdownx.caret
- pymdownx.keys
- pymdownx.mark
- pymdownx.tilde
# Page tree
nav:
- 站点介绍:
- 简述: index.md
- LinuxC基础: '01-LinuxCprogrammers.md'
- Linux组件开发: '02-Components.md'
- Linux设备驱动开发: '03-DeviceDriver.md'
- Linux系统开发: '04-System.md'
- LinuxC基础编程:
- LinuxShell:
- 文件管理类命令: 'Stage1-LinuxCprogrammers/LinuxShell/Filemanagement.md'
- 文档编辑类命令: 'Stage1-LinuxCprogrammers/LinuxShell/DocumentEditing.md'
- 系统管理: 'Stage1-LinuxCprogrammers/LinuxShell/SystemManagement.md'
- 磁盘操作: 'Stage1-LinuxCprogrammers/LinuxShell/DiskOperation.md'
- 网络管理: 'Stage1-LinuxCprogrammers/LinuxShell/NetworkManagement.md'
- C基础知识:
- C基础: 'Stage1-LinuxCprogrammers/01-Introduction.md'
- 编译链接: 'Stage1-LinuxCprogrammers/01-Introduction.md'
- MakeFile:
- Makefile简述: 'Stage1-LinuxCprogrammers/MakeFile/01-Introduction.md'
- Makefile规则: 'Stage1-LinuxCprogrammers/MakeFile/02-regulation.md'
- Makefile变量: 'Stage1-LinuxCprogrammers/MakeFile/03-variable.md'
- Makefile模式规则与伪目标: 'Stage1-LinuxCprogrammers/MakeFile/04-Pattern_rules_pseudo-targets.md'
- Makefile函数: 'Stage1-LinuxCprogrammers/MakeFile/05-function.md'
- Makefile实例: 'Stage1-LinuxCprogrammers/MakeFile/06-examples.md'
- GNU工具:
- GCC: 'Stage1-LinuxCprogrammers/GNU/01-Introduction.md'
- G++: 'Stage1-LinuxCprogrammers/GNU/01-Introduction.md'
- GDB: 'Stage1-LinuxCprogrammers/GNU/01-Introduction.md'
- OBJDUMP: 'Stage1-LinuxCprogrammers/GNU/01-Introduction.md'
- 文件/IO:
- C基础: 'Stage1-LinuxCprogrammers/CFileinputoutput/01-Introduction.md'
- 进程线程:
- C基础: 'Stage1-LinuxCprogrammers/ProcessThread/01-Introduction.md'
- 进程通信:
- C基础: 'Stage1-LinuxCprogrammers/01-Introduction.md'
- 网络编程:
- C基础: 'Stage1-LinuxCprogrammers/01-Introduction.md'
- 正则表达式:
- C基础: 'Stage1-LinuxCprogrammers/01-Introduction.md'
- Linux组件开发:
- 音频显示组件: 'Stage2-Components/AudioAndVideoApplications.md'
- LVGL组件:
- 简述: 'Stage2-Components/01-Introduction.md'
- 6ULLPro-开发示例: 'Stage2-Components/01-Introduction.md'
- MP157Pro-开发示例: 'Stage2-Components/01-Introduction.md'
- 网络组件: 'Stage2-Components/NetworkingApplications.md'
- MQTT组件:
- 简述: 'Stage2-Components/NetworkingApplications/MQTT/01-Introduction.md'
- 6ULLPro-开发示例: 'Stage2-Components/NetworkingApplications/MQTT/6ULLPro-Example.md'
- MP157Pro-开发示例: 'Stage2-Components/NetworkingApplications/MQTT/MP157Pro-Example.md'
- 设备驱动开发:
- NXP-GPIO子系统:
- 6ULLPro-LED灯: 'Stage3-DeviceDriver/Nxp/IMX6ULL/Pro/01-leddriver.md'
- 6ULLPro-按键: 'Stage3-DeviceDriver/Nxp/IMX6ULL/Pro/02-keydriver.md'
- 6ULLPro-SR501: 'Stage3-DeviceDriver/Nxp/IMX6ULL/Pro/03-sr501driver.md'
- 6ULLPro-SR04: 'Stage3-DeviceDriver/Nxp/IMX6ULL/Pro/04-SR04driver.md'
- 6ULLPro-DS18B20: 'Stage3-DeviceDriver/Nxp/IMX6ULL/Pro/06-ds18b20driver.md'
- 6ULLPro-DHT11: 'Stage3-DeviceDriver/Nxp/IMX6ULL/Pro/05-dht11driver.md'
- 6ULLPro-HS0038: 'Stage3-DeviceDriver/Nxp/IMX6ULL/Pro/07-hs0038driver.md'
- ST-GPIO子系统:
- MP157Pro-LED灯: 'Stage3-DeviceDriver/St/STM32MP157/Pro/01-leddriver.md'
- MP157Pro-按键: 'Stage3-DeviceDriver/St/STM32MP157/Pro/02-keydriver.md'
- MP157Pro-SR501: 'Stage3-DeviceDriver/St/STM32MP157/Pro/03-sr501driver.md'
- MP157Pro-SR04: 'Stage3-DeviceDriver/St/STM32MP157/Pro/04-SR04driver.md'
- MP157Pro-DS18B20: 'Stage3-DeviceDriver/St/STM32MP157/Pro/06-ds18b20driver.md'
- MP157Pro-DHT11: 'Stage3-DeviceDriver/St/STM32MP157/Pro/05-dht11driver.md'
- MP157Pro-HS0038: 'Stage3-DeviceDriver/St/STM32MP157/Pro/07-hs0038driver.md'
- NXP-I2C子系统:
- 简述: 'Stage3-DeviceDriver/01-Introduction.md'
- 6ULLPro-AT24c02模块: 'Stage3-DeviceDriver/Nxp/IMX6ULL/Pro/08-at24c02driver.md'
- ST-I2C子系统:
- 简述: 'Stage3-DeviceDriver/01-Introduction.md'
- MP157Pro-AT24c02模块: 'Stage3-DeviceDriver/St/STM32MP157/Pro/08-at24c02driver.md'
- NXP-SPI子系统:
- 简述: 'Stage3-DeviceDriver/01-Introduction.md'
- 6ULLPro-OLED: 'Stage3-DeviceDriver/Nxp/IMX6ULL/Pro/09-oleddriver.md'
- 6ULLPro-DAC模块: 'Stage3-DeviceDriver/Nxp/IMX6ULL/Pro/10-dacdriver.md'
- ST-SPI子系统:
- 简述: 'Stage3-DeviceDriver/01-Introduction.md'
- MP157Pro-OLED: 'Stage3-DeviceDriver/St/STM32MP157/Pro/09-oleddriver.md'
- MP157Pro-DAC模块: 'Stage3-DeviceDriver/St/STM32MP157/Pro/10-dacdriver.md'
- 系统开发:
- Git工具使用:
- 简述: 'Stage4-System/01-Introduction.md'
- NXP系统:
- 简述: 'Stage4-System/01-Introduction.md'
- IMX6ULLPro: 'Stage4-System/01-Introduction.md'
- IMX6ULLMini: 'Stage4-System/01-Introduction.md'
- ST系统:
- 简述: 'Stage4-System/01-Introduction.md'
- STM32MP157Pro: 'Stage4-System/01-Introduction.md'
- 全志系统:
- 简述: 'Stage4-System/01-Introduction.md'
- 东山哪吒D1-H: 'Stage4-System/01-Introduction.md'
- T113Pro: 'Stage4-System/01-Introduction.md'
- V853: 'Stage4-System/01-Introduction.md'
- 星宸系统:
- 简述: 'Stage4-System/01-Introduction.md'
- SSD202Pro: 'Stage4-System/01-Introduction.md'
extra_javascript:
- javascripts/shortcuts.js
extra_css:
- stylesheets/extra.css
extra_javascript:
- https://unpkg.com/[email protected]/dist/d3.min.js
- https://unpkg.com/[email protected]/dist/browser/index.min.js
- https://unpkg.com/[email protected]/dist/index.min.js