-
Notifications
You must be signed in to change notification settings - Fork 4
/
mkdocs.yml
147 lines (147 loc) · 4.66 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
---
copyright: Copyright © 2024 - 2030 AirLab CMU
docs_dir: .
site_name: AirStack
site_dir: ../site
exclude_docs: |
**/ros_ws/build
**/ros_ws/install
**/kit-app-template/**
extra:
generator: false
social:
- icon: fontawesome/brands/github
link: https://github.com/castacks
- icon: fontawesome/brands/x-twitter
link: https://x.com/airlabcmu
extra_css:
- stylesheets/extra.css
markdown_extensions:
- admonition
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.magiclink
- pymdownx.critic
- pymdownx.caret
- pymdownx.keys
- pymdownx.mark
- pymdownx.tilde
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- toc:
permalink: true
nav:
- Home: docs/README.md
- Getting Started: docs/getting_started.md
- Development:
- docs/development/index.md
- docs/development/docker_usage.md
- docs/development/vscode/index.md
- Testing:
- docs/development/testing/index.md
- docs/development/testing/testing_frameworks.md
- docs/development/testing/integration_testing.md
- docs/development/testing/unit_testing.md
- docs/development/testing/system_testing.md
- docs/development/testing/ci_cd.md
- docs/development/contributing.md
- docs/development/frame_conventions.md
- Robot:
- docs/robot/index.md
- docs/robot/common_topics.md
- Autonomy Modules:
- Robot Interface:
- docs/robot/autonomy/0_interface/index.md
- Sensors:
- docs/robot/autonomy/1_sensors/index.md
- Perception:
- docs/robot/autonomy/2_perception/index.md
- docs/robot/autonomy/2_perception/state_estimation.md
- Local:
- docs/robot/autonomy/3_local/index.md
- World Model:
- docs/robot/autonomy/3_local/world_model/index.md
- Planning:
- docs/robot/autonomy/3_local/planning/index.md
- Controls:
- docs/robot/autonomy/3_local/controls/index.md
- robot/ros_ws/src/autonomy/3_local/c_controls/trajectory_controller/README.md
- Global:
- docs/robot/autonomy/4_global/index.md
- World Model:
- docs/robot/autonomy/4_global/world_model/index.md
- robot/ros_ws/src/autonomy/4_global/a_world_models/vdb_mapping_ros2/README.md
- Planning:
- docs/robot/autonomy/4_global/planning/index.md
- robot/ros_ws/src/autonomy/4_global/b_planners/random_walk/README.md
- Behavior:
- docs/robot/autonomy/5_behavior/index.md
- docs/robot/autonomy/5_behavior/behavior_tree.md
- docs/robot/autonomy/5_behavior/behavior_executive.md
- Static Transforms:
- docs/robot/static_transforms/index.md
- Logging:
- docs/robot/logging/index.md
- Ground Control Station:
- docs/ground_control_station/index.md
- Usage:
- docs/ground_control_station/usage/user_interface.md
- Multi-Robot:
- docs/ground_control_station/multi_robot/multi_robot.md
- Simulation:
- docs/simulation/index.md
- Isaac Sim:
- docs/simulation/isaac_sim/index.md
- docs/simulation/isaac_sim/export_stages_from_unreal.md
- docs/simulation/isaac_sim/scene_setup.md
- docs/simulation/isaac_sim/ascent_sitl_extension.md
- Real World:
- docs/real_world/index.md
- Installation on Hardware:
- docs/real_world/installation/index.md
- About: docs/about.md
plugins:
- search
- same-dir
- redirects:
redirect_maps:
'README.md': 'docs/README.md'
repo_name: castacks/AirStack
repo_url: https://github.com/castacks/AirStack
theme:
favicon: docs/assets/StackedWhite.png
features:
- navigation.indexes
- navigation.path
- navigation.tabs
- navigation.expand
- navigation.footer
- navigation.top
- navigation.sections
- search.highlight
- search.suggest
- toc.integrate
- toc.follow
- content.code.copy
logo: docs/assets/logo_horizontal_white.png
name: material
palette:
- accent: pink
primary: custom
scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
- accent: pink
primary: custom
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode