File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -25,26 +25,26 @@ class NeuralTelemetryReceiver : public rclcpp::Node
2525 input_topic_,
2626 qos,
2727 std::bind (
28- &NeuralTelemetryReceiver::telemetry_callback,
29- this ,
30- std::placeholders::_1));
28+ &NeuralTelemetryReceiver::telemetry_callback,
29+ this ,
30+ std::placeholders::_1));
3131
3232 RCLCPP_INFO (
3333 this ->get_logger (),
3434 " neural_telemetry_receiver listening on '%s' and publishing to '%s'" ,
3535 input_topic_.c_str (),
3636 output_topic_.c_str ());
37- }
37+ }
3838
3939private:
4040 void telemetry_callback (const std_msgs::msg::Float32MultiArray::SharedPtr msg)
4141 {
4242 if (msg->data .empty ()) {
4343 RCLCPP_WARN_THROTTLE (
4444 this ->get_logger (),
45- *this ->get_clock (),
46- 5000 ,
47- " Received empty neural telemetry frame" );
45+ *this ->get_clock (),
46+ 5000 ,
47+ " Received empty neural telemetry frame" );
4848 return ;
4949 }
5050
@@ -67,7 +67,7 @@ class NeuralTelemetryReceiver : public rclcpp::Node
6767 rclcpp::Subscription<std_msgs::msg::Float32MultiArray>::SharedPtr subscription_;
6868};
6969
70- int main (int argc, char **argv)
70+ int main (int argc, char ** argv)
7171{
7272 rclcpp::init (argc, argv);
7373 rclcpp::spin (std::make_shared<NeuralTelemetryReceiver>());
You can’t perform that action at this time.
0 commit comments