Skip to content

Commit e687d7a

Browse files
authored
added perform in WaitForIMU Startup and WaitForPressureStartup (#718)
2 parents 0112eac + a2be39d commit e687d7a

File tree

1 file changed

+4
-2
lines changed
  • bitbots_motion/bitbots_hcm/bitbots_hcm/hcm_dsd/actions

1 file changed

+4
-2
lines changed

bitbots_motion/bitbots_hcm/bitbots_hcm/hcm_dsd/actions/wait_for.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ class WaitForIMUStartup(AbstractHCMActionElement):
66
Waits for the IMU to connect and does not complain as we are still in start up.
77
"""
88

9-
pass
9+
def perform(self, reevaluate=False):
10+
pass
1011

1112

1213
class WaitForIMU(AbstractHCMActionElement):
@@ -25,7 +26,8 @@ class WaitForPressureStartup(AbstractHCMActionElement):
2526
Waits for the pressure sensors to connect and not complain since we are still starting up.
2627
"""
2728

28-
pass
29+
def perform(self, reevaluate=False):
30+
pass
2931

3032

3133
class WaitForPressure(AbstractHCMActionElement):

0 commit comments

Comments
 (0)