Skip to content

Commit

Permalink
init bias for all robots being launched (nasa#747)
Browse files Browse the repository at this point in the history
* init bias for all robots being launched

* adding namespace for default robot
  • Loading branch information
marinagmoreira authored Nov 10, 2023
1 parent 803beb1 commit 39a4e71
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions astrobee/launch/sim.launch
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,9 @@
<arg name="dds" value="$(arg dds)" /> <!-- Enable DDS -->
<arg name="gtloc" value="$(arg gtloc)" /> <!-- Use Ground Truth Localizer -->
</include>

<!-- Default call initialize bias so config file is created if not already present -->
<node pkg="rosservice" type="rosservice" name="imu_calibration_default" args="call --wait $(arg ns)/gnc/ekf/init_bias" />
</group>

<!-- Auto-insert honey at a canned location -->
Expand All @@ -188,6 +191,9 @@
<arg name="dds" value="$(arg dds)" /> <!-- Enable DDS -->
<arg name="gtloc" value="$(arg gtloc)" /> <!-- Use Ground Truth Localizer -->
</include>

<!-- Default call initialize bias so config file is created if not already present -->
<node pkg="rosservice" type="rosservice" name="imu_calibration_honey" args="call --wait /honey/gnc/ekf/init_bias" />
</group>

<!-- Auto-insert bumble at a canned location -->
Expand All @@ -211,6 +217,9 @@
<arg name="dds" value="$(arg dds)" /> <!-- Enable DDS -->
<arg name="gtloc" value="$(arg gtloc)" /> <!-- Use Ground Truth Localizer -->
</include>

<!-- Default call initialize bias so config file is created if not already present -->
<node pkg="rosservice" type="rosservice" name="imu_calibration_bumble" args="call --wait /bumble/gnc/ekf/init_bias" />
</group>

<!-- Auto-insert queen at a canned location -->
Expand All @@ -234,9 +243,10 @@
<arg name="dds" value="$(arg dds)" /> <!-- Enable DDS -->
<arg name="gtloc" value="$(arg gtloc)" /> <!-- Use Ground Truth Localizer -->
</include>

<!-- Default call initialize bias so config file is created if not already present -->
<node pkg="rosservice" type="rosservice" name="imu_calibration_queen" args="call --wait /queen/gnc/ekf/init_bias" />
</group>

<!-- Default call initialize bias so config file is created if not already present -->
<node pkg="rosservice" type="rosservice" name="imu_calibration" args="call --wait /gnc/ekf/init_bias" />

</launch>

0 comments on commit 39a4e71

Please sign in to comment.