bit-bots / humanoid_league_misc

MIT License
0 stars 2 forks source link

Use MultiThreadedExecutor in team communication #132

Closed timonegk closed 1 year ago

timonegk commented 1 year ago

Proposed changes

The team communication is currently not working in simulation because it is stuck waiting for the /clock topic. These changes start spinning before using sleep_for and use the MultiThreadedExecutor instead of the default executor to avoid problems with blocking subscribers.

Necessary checks