Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Production sync #237

Merged
merged 34 commits into from
Apr 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
db9965b
Add new Network of Paths mission manager messages
civerachb-cpr Mar 13, 2024
8959451
Add the new network of paths service definitions from the mission man…
civerachb-cpr Mar 13, 2024
295f2e8
Add the new network of paths mission manager services
civerachb-cpr Mar 13, 2024
6632763
Update the storage state object
civerachb-cpr Mar 13, 2024
7b7594d
Add a new page with programming examples of creating a network of pat…
civerachb-cpr Mar 13, 2024
ad090a0
Replace the example graph map
civerachb-cpr Mar 13, 2024
17e7c15
Fix the path to the network graph image
civerachb-cpr Mar 15, 2024
1c80ee1
Add a network of paths execution example
civerachb-cpr Mar 26, 2024
39f1c33
fix title in side bar
jmastrangelo-cpr Mar 27, 2024
6a3aea7
Expand the example with KML instructions, fix the lat/lon ordering of…
civerachb-cpr Mar 27, 2024
39b200c
Merge branch 'development-onav-0.12' of github.com:clearpathrobotics/…
civerachb-cpr Mar 27, 2024
02410bb
Fix a copy & paste error in a comment
civerachb-cpr Apr 1, 2024
e9fb444
Another copy & paste error
civerachb-cpr Apr 1, 2024
0e1c417
Add the split-edge service
civerachb-cpr Apr 2, 2024
6fc25c4
ONAV-2279-IN-PROGRESS: Started working on the network of paths portio…
dobrienCP Apr 8, 2024
af74737
ONAV-2279: First draft of the Map mode page
dobrienCP Apr 9, 2024
fb2b9dd
ONAV-2279: Added in more images and cleaned up the waypoint mode page
dobrienCP Apr 9, 2024
fa226f8
ONAV-2279: Renamed the autonomy page file and fixed the links
dobrienCP Apr 9, 2024
8965fdd
ONAV-2279: Added a warning for the map object context menus
dobrienCP Apr 9, 2024
c70e4de
added documentation for assisted teleop feature
jmastrangelo-cpr Apr 9, 2024
d351105
ONAV-2279: Fixed some items in the ui_map_mode file and added in anot…
dobrienCP Apr 9, 2024
6e19433
review fixes
jmastrangelo-cpr Apr 9, 2024
fca0808
Merge pull request #235 from clearpathrobotics/ONAV-2127
jmastrangelo-cpr Apr 10, 2024
3d0a98a
ONAV-2279: Added in some fixes for the documentation as specified
dobrienCP Apr 10, 2024
910b64f
updated ui manual mode
jmastrangelo-cpr Apr 10, 2024
10ca23b
Merge pull request #236 from clearpathrobotics/ui_manual_mode
jmastrangelo-cpr Apr 10, 2024
548d886
Merge pull request #234 from clearpathrobotics/ONAV-2279
dobrienCP Apr 10, 2024
8a37100
0.12 development: Added the joystick max speeds
dobrienCP Apr 10, 2024
3628fc9
0.12-development: changed the Turning to Angular
dobrienCP Apr 10, 2024
1c3bf68
mode changes and update to upgrade instructions
jmastrangelo-cpr Apr 10, 2024
d1b2516
0.12.0 release
jmastrangelo-cpr Apr 10, 2024
c38c7ba
development-onav-0.12: Fixed a broken link
dobrienCP Apr 11, 2024
51b954c
Merge branch 'development-onav-0.12' of https://github.com/clearpathr…
dobrienCP Apr 11, 2024
f885df6
Merge pull request #230 from clearpathrobotics/development-onav-0.12
jmastrangelo-cpr Apr 12, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 44 additions & 1 deletion docs_outdoornav_user_manual/api/api_endpoints/autonomy_api.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,49 @@ The OutdoorNav software publishes to the topics in this section either
all the time or while an autonomous navigation missions is running. They
can be used to monitor the behaviour of OutdoorNav.


#### /assisted_teleop/cmd_vel

  **Message Type:** geometry_msgs/Twist

  **Description:** The safe output velocity from the assisted teleop node
computes. If assisted teleop is enabled the UGV will use this velocity.

#### /assisted_teleop/footprint

  **Message Type:** geometry_msgs/Polygon

  **Description:** The footprint that the assisted teleop node uses to compute
if it is in a collision state.

#### /assisted_teleop/obstacle_map

  **Message Type:** [clearpath_safety_msgs/ObstacleMap](definitions.mdx#msg-obstacle-map)

  **Description:** The radial mapping of detected obstacles used to populate the joystick
on the OutdoorNav UI.

#### /assisted_teleop/safe_path

  **Message Type:** nav_msgs/Path

  **Description:** The path used by assisted teleop to lookahead for collisions.

#### /assisted_teleop/safety_footprints

  **Message Type:** nav_msgs/Path

  **Description:** Footprint sets used for detecting obstacles and slowing
down the robot to a standstill. The footprints are modular in size
according to the current velocity of the robot.

#### /assisted_teleop/state

  **Message Type:** [clearpath_safety_msgs/AssistedTeleopState](definitions.mdx#msg-assisted-teleop-state)

  **Description:** The current state of the assisted teleop node including
any error conditions that may occur.

#### /control_selection/control_state

  **Message Type:** [clearpath_control_msgs/ControlSelectionState](definitions.mdx#msg-control-selection-state)
Expand Down Expand Up @@ -116,7 +159,7 @@ Unknown space that the robot uses to detect obstacles.

#### /navigation/local_plan

  **Message Type:** nav_msgs/msg/Path
  **Message Type:** nav_msgs/Path

  **Description:** The MPC local plan that the navigation uses to control
the robot along the reference path.
Expand Down
Loading
Loading