Skip to content

Commit 065dada

Browse files
Merge pull request #481 from clearpathrobotics/2.1.0_outdoornav_msg_update
2.1.1 outdoornav msg update
2 parents f0d53fe + 85963f7 commit 065dada

File tree

292 files changed

+801
-708
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

292 files changed

+801
-708
lines changed

docs_outdoornav_user_manual/api/api_endpoints/autonomy_api.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ will be `a300_00001`. This can be overwritten in the [robot.yaml](../../../../do
7474
| docking/dock_localizer/add_dock_current_pose| [clearpath_dock_msgs/srv/AddDockCurrentPose](pathname:///api/html/clearpath_dock_msgs/srv/AddDockCurrentPose.html) | Add a dock with the current pose |
7575
| docking/dock_localizer/get_dock_poses| [clearpath_dock_msgs/srv/GetDockPoses](pathname:///api/html/clearpath_dock_msgs/srv/GetDockPoses.html) | Return the dock and predock poses of a specific dock |
7676
| docking/dock_localizer/survey_dock| [clearpath_dock_msgs/srv/SurveyDock](pathname:///api/html/clearpath_dock_msgs/srv/SurveyDock.html) | Survey the docks position |
77+
| execute_task | [clearpath_task_msgs/srv/ExecuteTask](pathname:///api/html/clearpath_task_msgs/srv/ExecuteTask.html) | Run a task as a service |
7778
| localization/lat_lon_to_xy | [clearpath_localization_msgs/srv/ConvertLatLonToCartesian](pathname:///api/html/clearpath_localization_msgs/srv/ConvertLatLonToCartesian.html) | Convert lat/lon condinate to map XY coordinate |
7879
| localization/lat_lon_to_xy_array | [clearpath_localization_msgs/srv/ConvertLatLonToCartesianArray](pathname:///api/html/clearpath_localization_msgs/srv/ConvertLatLonToCartesianArray.html) | Convert a set of lat/lon coordinates to map XY coordinates |
7980
| localization/set_datum | [clearpath_localization_msgs/srv/SetDatum](pathname:///api/html/clearpath_localization_msgs/srv/SetDatum.html) | Set the datum |
@@ -116,3 +117,4 @@ will be `a300_00001`. This can be overwritten in the [robot.yaml](../../../../do
116117
| autonomy/local_dock | [clearpath_dock_msgs/action/Dock](pathname:///api/html/clearpath_dock_msgs/action/Dock.html) | Dock the platform (charge target must be visible by platform 2D lidar sensor) |
117118
| autonomy/local_undock | [clearpath_dock_msgs/action/Undock](pathname:///api/html/clearpath_dock_msgs/action/Undock.html) | Undock the platform (charge target must be visible by the 2D lidar sensor) |
118119
| autonomy/network_dock | [clearpath_dock_msgs/action/NetworkDock](pathname:///api/html/clearpath_dock_msgs/action/NetworkDock.html) | Send robot to charger (charger must be in the driveable space of the map) |
120+
| execute_task_action | [clearpath_task_msgs/action/ExecuteTask](pathname:///api/html/clearpath_task_msgs/action/ExecuteTask.html) | Run a task as an action |

static/api/html/builtin_interfaces/index-msg.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ <h1>builtin_interfaces Message Documentation</h1>
1212
<li><a href="../builtin_interfaces/msg/Time.html">msg/Time</a></li>
1313
<li><a href="../builtin_interfaces/msg/Duration.html">msg/Duration</a></li>
1414
</ul>
15-
<p class="footer">autogenerated on Jun 19 2025 15:17:06</p>
15+
<p class="footer">autogenerated on Oct 16 2025 21:02:59</p>
1616
</div>
1717
</body>
1818
</html>

static/api/html/builtin_interfaces/msg/Duration.html

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,13 @@ <h2>Raw Message Definition</h2>
1616
<div class="comment-text"># Messages of this datatype are of ROS Time following this design:</div><br>
1717
<div class="comment-text"># https://design.ros2.org/articles/clock_and_time.html</div><br>
1818
<br>
19-
<div class="comment-text"># Seconds component, range is valid over any possible int32 value.</div><br>
19+
<div class="comment-text"># The seconds component, valid over all int32 values.</div><br>
2020
int32 sec<br>
2121
<br>
22-
<div class="comment-text"># Nanoseconds component in the range of [0, 1e9).</div><br>
22+
<div class="comment-text"># The nanoseconds component, valid in the range [0, 1e9), to be added to the seconds component. </div><br>
23+
<div class="comment-text"># e.g.</div><br>
24+
<div class="comment-text"># The duration -1.7 seconds is represented as {sec: -2, nanosec: 3e8}</div><br>
25+
<div class="comment-text"># The duration 1.7 seconds is represented as {sec: 1, nanosec: 7e8}</div><br>
2326
uint32 nanosec<br>
2427
</div>
2528
<h2>Compact Message Definition</h2>
@@ -28,7 +31,7 @@ <h2>Compact Message Definition</h2>
2831
uint32 nanosec<br>
2932
</div>
3033
</div>
31-
<p class="footer">autogenerated on Jun 19 2025 15:17:06</p>
34+
<p class="footer">autogenerated on Oct 16 2025 21:02:59</p>
3235
</div>
3336
</body>
3437
</html>

static/api/html/builtin_interfaces/msg/Time.html

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,10 @@ <h2>Raw Message Definition</h2>
1818
<div class="comment-text"># The seconds component, valid over all int32 values.</div><br>
1919
int32 sec<br>
2020
<br>
21-
<div class="comment-text"># The nanoseconds component, valid in the range [0, 1e9).</div><br>
21+
<div class="comment-text"># The nanoseconds component, valid in the range [0, 1e9), to be added to the seconds component. </div><br>
22+
<div class="comment-text"># e.g.</div><br>
23+
<div class="comment-text"># The time -1.7 seconds is represented as {sec: -2, nanosec: 3e8}</div><br>
24+
<div class="comment-text"># The time 1.7 seconds is represented as {sec: 1, nanosec: 7e8}</div><br>
2225
uint32 nanosec<br>
2326
</div>
2427
<h2>Compact Message Definition</h2>
@@ -27,7 +30,7 @@ <h2>Compact Message Definition</h2>
2730
uint32 nanosec<br>
2831
</div>
2932
</div>
30-
<p class="footer">autogenerated on Jun 19 2025 15:17:06</p>
33+
<p class="footer">autogenerated on Oct 16 2025 21:02:59</p>
3134
</div>
3235
</body>
3336
</html>

static/api/html/clearpath_control_msgs/index-msg.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@
99
<div id="container">
1010
<h1>clearpath_control_msgs Message Documentation</h1>
1111
<ul>
12-
<li><a href="../clearpath_control_msgs/msg/ControlState.html">msg/ControlState</a></li>
1312
<li><a href="../clearpath_control_msgs/msg/ControlSelectionState.html">msg/ControlSelectionState</a></li>
1413
<li><a href="../clearpath_control_msgs/msg/ControlMode.html">msg/ControlMode</a></li>
14+
<li><a href="../clearpath_control_msgs/msg/ControlState.html">msg/ControlState</a></li>
1515
</ul>
1616
<h1>clearpath_control_msgs Service Documentation</h1>
1717
<ul>
1818
<li><a href="../clearpath_control_msgs/srv/SetControlMode.html">srv/SetControlMode</a></li>
1919
</ul>
20-
<p class="footer">autogenerated on Jun 19 2025 15:17:06</p>
20+
<p class="footer">autogenerated on Oct 16 2025 21:02:59</p>
2121
</div>
2222
</body>
2323
</html>

static/api/html/clearpath_control_msgs/msg/ControlMode.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ <h2>Compact Message Definition</h2>
2828
int8 mode<br>
2929
</div>
3030
</div>
31-
<p class="footer">autogenerated on Jun 19 2025 15:17:06</p>
31+
<p class="footer">autogenerated on Oct 16 2025 21:02:59</p>
3232
</div>
3333
</body>
3434
</html>

static/api/html/clearpath_control_msgs/msg/ControlSelectionState.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ <h2>Compact Message Definition</h2>
2323
<a href="../../clearpath_control_msgs/msg/ControlMode.html"> clearpath_control_msgs/msg/ControlMode</a> mode<br>
2424
</div>
2525
</div>
26-
<p class="footer">autogenerated on Jun 19 2025 15:17:06</p>
26+
<p class="footer">autogenerated on Oct 16 2025 21:02:59</p>
2727
</div>
2828
</body>
2929
</html>

static/api/html/clearpath_control_msgs/msg/ControlState.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ <h2>Compact Message Definition</h2>
2323
boolean paused<br>
2424
</div>
2525
</div>
26-
<p class="footer">autogenerated on Jun 19 2025 15:17:06</p>
26+
<p class="footer">autogenerated on Oct 16 2025 21:02:59</p>
2727
</div>
2828
</body>
2929
</html>

static/api/html/clearpath_control_msgs/srv/SetControlMode.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ <h2>Compact Message Definition</h2>
2323
<a href="../../clearpath_control_msgs/msg/ControlMode.html"> clearpath_control_msgs/msg/ControlMode</a> mode<br>
2424
</div>
2525
</div>
26-
<p class="footer">autogenerated on Jun 19 2025 15:17:06</p>
26+
<p class="footer">autogenerated on Oct 16 2025 21:02:59</p>
2727
</div>
2828
</body>
2929
</html>

static/api/html/clearpath_dock_msgs/action/Dock.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ <h2>Compact Message Definition</h2>
4040
string message<br>
4141
</div>
4242
</div>
43-
<p class="footer">autogenerated on Jun 19 2025 15:17:06</p>
43+
<p class="footer">autogenerated on Oct 16 2025 21:02:59</p>
4444
</div>
4545
</body>
4646
</html>

0 commit comments

Comments
 (0)