You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
to contain a percentage (ie: int) and no longer the float we transmit in the simple message msg. The check in the motionControl task (which calls interpolateVel(..)) checks for mDesc.vel == 0.1, which can never be true if I understand things correctly.
As noted in the quote above: mDesc.vel isn't actually between (0, 1] here any more, but is converted to a percentage (ie: (0, 100]). As such, the condition will never be true, causing the quoted code snippet to never actually be executed.
The text was updated successfully, but these errors were encountered:
@gavanderhoorn wrote in #16 (comment):
The conditional is here:
staubli_val3_driver/staubli_val3_driver/val3/ros_server/interpolateVel.pgx
Lines 14 to 17 in 17fd14a
As noted in the quote above:
mDesc.vel
isn't actually between(0, 1]
here any more, but is converted to a percentage (ie:(0, 100]
). As such, the condition will never be true, causing the quoted code snippet to never actually be executed.The text was updated successfully, but these errors were encountered: