Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions pendulum_control/include/pendulum_control/rtt_executor.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,12 @@ class RttExecutor : public rclcpp::Executor
rttest_ready = rttest_running();
}

// dummy implementation, not used
void spin(const std::function<void(const std::exception &)> &)
{
throw std::logic_error("not implemented");
}

/// Core component of the executor. Do a little bit of work and update extra state.
// \param[in] Anonymous argument, will be cast as a pointer to an RttExecutor.
static void * loop_callback(void * arg)
Expand Down