mirror of
https://github.com/bjoernellens1/rmp220_middleware.git
synced 2024-11-24 16:45:07 +00:00
update: switch from 10 Hz to 100Hz
This commit is contained in:
parent
7e89c525a0
commit
b0c31017a6
@ -30,7 +30,7 @@ class StateMachineNode(Node):
|
|||||||
self.cmd_vel_pub = self.create_publisher(Twist, '/cmd_vel_out', 10)
|
self.cmd_vel_pub = self.create_publisher(Twist, '/cmd_vel_out', 10)
|
||||||
self.cmd_vel_sub = self.create_subscription(Twist, '/cmd_vel_mux', self.cmd_vel_callback, 10)
|
self.cmd_vel_sub = self.create_subscription(Twist, '/cmd_vel_mux', self.cmd_vel_callback, 10)
|
||||||
self.joy_sub = self.create_subscription(Joy, '/joy', self.joy_callback, 10)
|
self.joy_sub = self.create_subscription(Joy, '/joy', self.joy_callback, 10)
|
||||||
self.timer = self.create_timer(0.1, self.timer_callback)
|
self.timer = self.create_timer(0.01, self.timer_callback)
|
||||||
#self.timer = self.create_timer(0.1, self.cmd_vel_callback)
|
#self.timer = self.create_timer(0.1, self.cmd_vel_callback)
|
||||||
|
|
||||||
# Create twist class for publishing velocities
|
# Create twist class for publishing velocities
|
||||||
@ -110,7 +110,7 @@ class StateMachineNode(Node):
|
|||||||
self.get_logger().info("State: DISABLED (Timeout)")
|
self.get_logger().info("State: DISABLED (Timeout)")
|
||||||
self.disable_chassis()
|
self.disable_chassis()
|
||||||
else:
|
else:
|
||||||
self.timeout -= 0.1
|
self.timeout -= 0.01
|
||||||
self.cmd_vel_pub.publish(self.latest_cmd_vel)
|
self.cmd_vel_pub.publish(self.latest_cmd_vel)
|
||||||
if self.state == State.DISABLED:
|
if self.state == State.DISABLED:
|
||||||
self.cmd_vel_pub.publish(self.twist)
|
self.cmd_vel_pub.publish(self.twist)
|
||||||
|
Loading…
Reference in New Issue
Block a user