-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Integrate ros2_control and add user documentation (#162)
* Started migration to new controller package and ardusub interface * Replaced launch files with yaml * Started integrating new control framework * Removed old scripts and configuration files; continued ardusub manager integration * Fixed launch files and started debugging manager * Fixed mavros configuration file * Added vscode file * Working state - need to finish updates to joy package * Working state all vehicles updated * Save point before I break things * Waiting to add demos until i add documentation * Added docs * Started reintegrating demos * Cleaned up devcontainer config * Added demos and vehicle images * Added links to demo readme * Added tutorials * Cleaned up site visualizations and styling * Updated readme * Moved citation * Fixed issues in tutorials * Fixed ci * Removed codespell * Fixed spelling errors * Fixed dockerignore * Added user documentation (#160) * Added docs * Started reintegrating demos * Cleaned up devcontainer config * Added demos and vehicle images * Added links to demo readme * Added tutorials * Cleaned up site visualizations and styling * Updated readme * Moved citation * Fixed issues in tutorials * Fixed ci * Removed codespell * Fixed spelling errors * Fixed dockerignore * Testing docs cd pipeline * Fixed reference to package-lock * Added path to docs * prolly wont work but worth a shot * take 2 * Another attempt * Testing * Removed previous change * Added separate ci docs pipeline * Added fixes and switched back to rolling * Fixed dockerfile ros version * Fixed readme
- Loading branch information
1 parent
1f38f65
commit 3709432
Showing
150 changed files
with
21,304 additions
and
5,694 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[codespell] | ||
skip = *.json | ||
ignore-words-list = parm,ned,sitl |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
FROM node:20 | ||
|
||
RUN apt-get -q update \ | ||
&& apt-get -q -y upgrade \ | ||
&& apt-get install sudo \ | ||
&& apt-get autoremove -y \ | ||
&& apt-get clean -y \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
ARG USERNAME=node | ||
RUN echo $USERNAME ALL=\(root\) NOPASSWD:ALL > /etc/sudoers.d/$USERNAME \ | ||
&& chmod 0440 /etc/sudoers.d/$USERNAME |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"name": "Documentation", | ||
"build": { | ||
"dockerfile": "Dockerfile" | ||
}, | ||
"remoteUser": "node", | ||
"customizations": { | ||
"vscode": { | ||
"settings": { | ||
"files.insertFinalNewline": true, | ||
"files.trimTrailingWhitespace": true, | ||
"editor.formatOnSave": true, | ||
"editor.tabSize": 2, | ||
"editor.rulers": [80] | ||
}, | ||
"extensions": [ | ||
"esbenp.prettier-vscode", | ||
"unifiedjs.vscode-mdx" | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.