Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[wjwwood] fix: Compilefix for changes to rclcpp::Executor #671

Open
wants to merge 2 commits into
base: rolling
Choose a base branch
from
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