Skip to content

Commit

Permalink
Fix return type of lambda (#368)
Browse files Browse the repository at this point in the history
  • Loading branch information
christophfroehlich committed Sep 29, 2023
1 parent 90fac3d commit d60875d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions example_14/hardware/rrbot_sensor_for_position_feedback.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,7 @@ hardware_interface::CallbackReturn RRBotSensorPositionFeedback::on_init(
bzero(buffer, reading_size_bytes);
std::this_thread::sleep_for(std::chrono::nanoseconds(1000000000 / incoming_data_read_rate));
}
return hardware_interface::CallbackReturn::SUCCESS;
});
// END: This part here is for exemplary purposes - Please do not copy to your production code

Expand Down

0 comments on commit d60875d

Please sign in to comment.