-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add notes on frame conventions * Add tf2_tools view_frames to .bash_history_init * Add a separate .vscode for robot container * Add ros_ws/install folder to intellisense * Log if waiting for odom
- Loading branch information
1 parent
99df405
commit 867d864
Showing
8 changed files
with
1,202 additions
and
252 deletions.
There are no files selected for viewing
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,7 @@ | ||
|
||
## Frame Conventions | ||
|
||
Each robot has its own **map** frame that represents the starting position of the robot. | ||
The **map** frame is expected to be in ENU (East-North-Up) convention. | ||
|
||
The robot is in the **base_link** frame. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
{ | ||
"configurations": [ | ||
{ | ||
"browse": { | ||
"databaseFilename": "${default}", | ||
"limitSymbolsToIncludedHeaders": false | ||
}, | ||
"includePath": [ | ||
"${workspaceFolder}/install/vdb_mapping_interfaces/include/**", | ||
"${workspaceFolder}/install/trajectory_library/include/**", | ||
"${workspaceFolder}/install/mavros_interface/include/**", | ||
"${workspaceFolder}/install/robot_interface/include/**", | ||
"${workspaceFolder}/install/px4_msgs/include/**", | ||
"${workspaceFolder}/install/mav_system_msgs/include/**", | ||
"${workspaceFolder}/install/mav_state_machine_msgs/include/**", | ||
"${workspaceFolder}/install/mav_planning_msgs/include/**", | ||
"${workspaceFolder}/install/mav_msgs/include/**", | ||
"${workspaceFolder}/install/disparity_map_representation/include/**", | ||
"${workspaceFolder}/install/map_representation_interface/include/**", | ||
"${workspaceFolder}/install/disparity_graph/include/**", | ||
"${workspaceFolder}/install/behavior_tree/include/**", | ||
"${workspaceFolder}/install/behavior_tree_msgs/include/**", | ||
"${workspaceFolder}/install/airstack_common/include/**", | ||
"${workspaceFolder}/install/airstack_msgs/include/**", | ||
"${workspaceFolder}/src/**", | ||
"${workspaceFolder}/install/**", | ||
"/opt/ros/humble/include/**", | ||
"/usr/include/**" | ||
], | ||
"name": "ROS", | ||
"intelliSenseMode": "gcc-x64", | ||
"compilerPath": "/usr/bin/gcc", | ||
"cStandard": "gnu11", | ||
"cppStandard": "c++17" | ||
} | ||
], | ||
"version": 4 | ||
} |
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,13 @@ | ||
{ | ||
"recommendations": [ | ||
"ms-python.black-formatter", | ||
"ms-iot.vscode-ros", | ||
"ms-vscode-remote.remote-ssh", | ||
"ms-python.python", | ||
"ms-vscode-remote.remote-containers", | ||
"redhat.vscode-xml", | ||
"dotjoshjohnson.xml", | ||
"ms-vscode.cmake-tools", | ||
"cschlosser.doxdocgen" | ||
] | ||
} |
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 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "ROS2: Launch robot.launch.xml", | ||
"type": "ros", | ||
"request": "launch", | ||
// "preLaunchTask": "build ros_ws debug", | ||
"target": "${workspaceFolder}/install/robot_bringup/share/robot_bringup/launch/robot.launch.xml", | ||
} | ||
] | ||
} |
Large diffs are not rendered by default.
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,33 @@ | ||
{ | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "build ros_ws debug", | ||
"type": "shell", | ||
"options": { | ||
"cwd": "${workspaceFolder}" | ||
}, | ||
"command": [ | ||
"source /root/.bashrc &&", | ||
"bws --cmake-args '-DCMAKE_BUILD_TYPE=Debug'" | ||
], | ||
"problemMatcher": [], | ||
"group": { | ||
"kind": "build", | ||
"isDefault": true | ||
} | ||
}, | ||
{ | ||
"label": "test ros_ws", | ||
"type": "shell", | ||
"options": { | ||
"cwd": "${workspaceFolder}" | ||
}, | ||
"command": [ | ||
"source /opt/ros/humble/setup.bash;", | ||
"source ${workspaceFolder}/install/setup.bash;", | ||
"colcon test && colcon test-result" | ||
], | ||
} | ||
] | ||
} |
Oops, something went wrong.