-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
219 lines (209 loc) · 8.13 KB
/
Copy pathmkdocs.yml
File metadata and controls
219 lines (209 loc) · 8.13 KB
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
# CRS documentation site — MkDocs + Material
# Build: mkdocs build Serve: mkdocs serve
# Nav is generated from docs/SUMMARY.md by tools/summary_to_nav.py
site_name: CRS Documentation
site_url: https://intelligentcontrolsystems.github.io/crs/
site_description: Control and Robotics Software — simulation and experiment framework for control and robotics
repo_url: https://github.com/IntelligentControlSystems/crs
repo_name: IntelligentControlSystems/crs
edit_uri: edit/main/docs/
docs_dir: docs
site_dir: site
theme:
name: material
language: en
icon:
repo: fontawesome/brands/github
features:
- navigation.indexes # section landing pages (e.g. Controllers)
- navigation.top
- navigation.tracking
- navigation.footer
- toc.follow
- search.suggest
- search.highlight
- content.code.copy
- content.action.edit
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/weather-night
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: indigo
accent: indigo
toggle:
icon: material/weather-sunny
name: Switch to light mode
plugins:
- search
# Build-time repairs for GitLab wiki syntax: math delimiters, <details> blocks,
# tables/fences without a preceding blank line, and links inside raw HTML.
hooks:
- tools/mkdocs_hooks.py
markdown_extensions:
- abbr
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- tables
- toc:
permalink: true
toc_depth: 3
- pymdownx.arithmatex: # LaTeX for the MPC / EKF pages
generic: true
- pymdownx.betterem
- pymdownx.caret
- pymdownx.details
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
extra_css:
- assets/extra.css
extra_javascript:
- assets/mathjax.js
- https://unpkg.com/mathjax@3/es5/tex-mml-chtml.js
# Link checking happens in tools/mkdocs_hooks.py, which repairs wiki-era links
# and reports the genuinely dead ones at the end of the build. MkDocs' own
# check runs before the hook, so it would only report links that get fixed.
validation:
omitted_files: warn
absolute_links: ignore
unrecognized_links: ignore
# Pages kept in the repo but deliberately not in the sidebar.
not_in_nav: |
SUMMARY.md
nav:
- Home: README.md
- "Getting Started":
- "Installation": getting_started/Installation.md
- "First Steps": getting_started/First-Steps.md
- "Folder Structure": getting_started/Folder-Structure.md
- "Experiments": getting_started/experiments.md
- "Overview": getting_started/Overview.md
- "CRS":
- "Dynamic Models":
- Dynamic-Models.md
- "Pacejka Model": pacejka-model.md
- "Kinematic Model": kinematic-model.md
- "Parafoil 4-DoF Model": Parafoil-4-Dof-Model.md
- "Rocket 6-DoF Model": Rocket-6-Dof-Model.md
- "Sensor Models":
- Sensor-Models.md
- "Vicon Sensor Model": vicon-sensor-model.md
- "IMU Sensor Model": imu-sensor-model.md
- "Wheel Encoders": Wheel-Encoders.md
- "Lighthouse": lighthouse-sensor-model.md
- "Estimators":
- Estimators.md
- "Lowpass Filter": lowpass-filter.md
- "EKF": ekf.md
- "Square Root EKF": sqrt-ekf.md
- "MHE": MHE.md
- "Controllers":
- Controllers.md
- "PID": PID-controller.md
- "Feedforward Feedback": FF_FB-controller.md
- "MPCC": Pacejka-MPCC-controller.md
- "Safety Filter": Safety-Filter.md
- "Rocket Controller": Rocket-Controller.md
- "Joystick": Joystick.md
- "Solvers": MPC_Solvers.md
- "ROS4CRS":
- "Structure": Ros-Structure.md
- "Dependency Reduction": dependency-reduction.md
- "Estimators":
- Ros-Estimators.md
- "EKF": ROS-EKF.md
- "Square Root EKF": ROS-SQRT-EKF.md
- "MHE": ROS-MHE.md
- "Controllers":
- Ros-Controllers.md
- "Directory Structure": ros_controllers-dir-struct.md
- "MPC": ROS-MPC.md
- "Last Reference Point": last_reference_point_visualizer.md
- "Safety Filter": ROS-Safety-Filter.md
- "Python Controllers":
- Ros-Controllers-Python.md
- "Zero-order GP-MPC": Ros-Controllers-Python-zoGPMPC.md
- "Simulators": ros-simulators.md
- "MPC Autotuner": MPC-Autotuner.md
- "Wi-Fi Communication": Wi-Fi-Communication.md
- "Track Manager": track-manager.md
- "Backtrackers":
- backtrackers.md
- "Linear Backtracker": linear-backtracker.md
- "Configuration Overview": configuration_overview.md
- "ROS_IO":
- "Qualisys Car State Converter": ros_io/Qualisys-Car-State-Converter.md
- "Scripts":
- "System Identification": scripts/System-Identification.md
- "Track Generation": track-generation.md
- "Estimator Evaluation": estimator-evaluation.md
- "Development":
- development/Development-Setup.md
- "Coding Guidelines": development/Guidelines.md
- "Visualization": development/Visualization.md
- "Debugging C/C++ code in ROS": development/Debugging-C-and-C++-ROS-Code.md
- "Development Container": development/Development-Container.md
- "Tools for ROS bags": development/Tools-for-ROS-bags.md
- "Adapting the clock rate": development/Adapting-the-clock-rate.md
- "A Guide to CMakeLists": development/How-to-write-a-CMakeLists.txt.md
- "Tuning":
- development/Tuning.md
- "Controller Tuning GUI": development/Controller-tuning-using-rqt_reconfigure.md
- "Controller Parameters": development/Controller-Parameters.md
- "Model Parameters": development/Model-Parameters.md
- "Hardware Documentation":
- "Car Manual":
- crs-for-cars/Car-Manual.md
- "How to build Chronos": crs-for-cars/how-to-build-a-chronos-car.md
- "Hardware Manual": crs-for-cars/hardware-manual.md
- "Firmware": crs-for-cars/Car-Firmware.md
- "Low-level Controllers": crs-for-cars/Lowlevel-Controllers.md
- "Steer Calibration": Steer-Calibration.md
- "Steer Controller Tuning": crs-for-cars/Steer-Controller-Tuning.md
- "Configuration Interface": crs-for-cars/Car-Configuration-Interface.md
- "Time Synchronization": Time-Synchronization.md
- "Troubleshooting": crs-for-cars/Car-Troubleshooting.md
- "Motion Capture Systems":
- Motion-Capture-Systems.md
- "Qualisys System": qualisys/Qualisys-Overview.md
- "Lighthouse System":
- lighthouse/Lighthouse-Overview.md
- "Calibration": lighthouse/Lighthouse-Calibration.md
- "Rocket":
- "Rocket Qualisys Configuration": Rocket-Setup.md
- "Rocket Host/GCS Laptop setup": Rocket-GCS/Host-Laptop-Setup.md
- "Launching the Rocket": Rocket-Startup.md
- "Multi-arch Docker building and Deployment": Multi-arch-Docker-build-and-image-transfer-via-on-robot-registry.md
- "Time Sync with Internet or local NTP": Time-Synchronization-with-Internet-or-a-local-NTP-server.md
- "Tutorials":
- Tutorials.md
- "Adding a new Model": adding-new-model.md
- "Ros Parameters": ros-parameters.md
- "Register a component in the ros wrapper": register-component.md
- "Adding a new Estimator": Tutorials/Adding-a-new-Estimator.md
- "Adding New Models to CRS":
- "Adding a Dynamic Model": Tutorials/adding_new_models_to_crs/Adding-a-Dynamic-Model.md
- "Adding a Sensor model": Tutorials/adding_new_models_to_crs/Adding-Sensor-Models.md
- "Adding Messages for our Models": Tutorials/adding_new_models_to_crs/Adding-Messages-for-our-Models.md
- "Creating a ROS Simulator":
- "Creating a barebones ROS simulator": Tutorials/creating_a_ros_simulator/Creating-a-Barebones-ROS-Simulator.md
- "Adding a state publisher": Tutorials/creating_a_ros_simulator/Adding-a-State-Publisher.md
- "Adding a controller that pub'n'subs": Tutorials/creating_a_ros_simulator/Controller-that-Pubs-and-Subs.md
- "Upgrading simulator to pub'n'sub": Tutorials/creating_a_ros_simulator/Simulator-that-Pubs-and-Subs.md