-
Notifications
You must be signed in to change notification settings - Fork 63
/
mkdocs.yml
94 lines (91 loc) · 2.78 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
# Project Information
site_name: SJSU-DEV2
# Configuration
theme:
name: 'material'
# custom_dir: css/
# include_sidebar: true
highlightjs: true
hljs_style:
- monokai
extra_css:
- 'stylesheets/extra.css'
docs_dir: documentation/
markdown_extensions:
- admonition
- pymdownx.mark # highlighting
- pymdownx.superfences # nest code
- codehilite # code syntax coding
- toc:
permalink:
# Navigation
nav:
- Home: 'index.md'
- Introduction:
- 'introduction/getting_started_sjtwo.md'
- 'introduction/connecting_debugger.md'
- 'introduction/flashing.md'
- 'introduction/device_debugging.md'
- 'introduction/project.md'
- 'introduction/library.md'
- 'introduction/reference.md'
- Software Architecture:
- 'software_architecture/error_handling.md'
- 'software_architecture/multi_platform.md'
- 'software_architecture/clock_systems.md'
- 'software_architecture/fatfs.md'
- 'software_architecture/unit_testing.md'
- Libraries:
- 'libraries/bit.md'
- 'libraries/math_utilities.md'
- 'libraries/map.md'
- How To Contribute:
- 'contributing/philosophy.md'
- 'contributing/levels.md'
- 'contributing/level_guide/platforms.md'
- 'contributing/level_guide/peripherals.md'
- 'contributing/level_guide/devices.md'
- 'contributing/level_guide/systems.md'
- 'contributing/presubmit-checks.md'
- 'contributing/style.md'
- 'contributing/techniques/left-to-right.md'
- Design Documents:
- Platforms:
- 'design_docs/L0/none.md'
- Peripherals:
- 'design_docs/L1/counter.md'
- 'design_docs/L1/pin.md'
- 'design_docs/L1/system_controller.md'
- System Controllers:
- 'design_docs/L1/msp432p401r/system_controller.md'
- Devices:
- Sensors:
- 'design_docs/L2/accelerometer.md'
- Accelerometers Drivers:
- 'design_docs/L2/accelerometer/mma8452q.md'
- Environment:
- 'design_docs/L2/light_sensor_interface.md'
- 'design_docs/L2/temperature_sensor_interface.md'
- Light Sensor Drivers:
- 'design_docs/L2/temt6000x01.md'
- Temperature Sensor Driver:
- 'design_docs/L2/si7060.md'
- 'design_docs/L2/tmp102.md'
- Communication:
- 'design_docs/L2/infrared_receiver_interface.md'
- Infrared:
- 'design_docs/L2/tsop752.md'
- Systems:
- 'design_docs/L3/periodic_scheduler.md'
- 'design_docs/L3/task_interface.md'
- 'design_docs/L3/task_scheduler.md'
- Utility:
- 'design_docs/utility/none.md'
- Testing:
- 'design_docs/testing/none.md'
- Third Party Software:
- 'design_docs/third_party/none.md'
- Template:
- 'design_docs/template/template.md'
- 'about.md'
- 'copyrights.md'