mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-07-01 04:50:36 +08:00
clean up subscriber example
This commit is contained in:
@@ -43,8 +43,6 @@
|
||||
|
||||
using namespace px4;
|
||||
|
||||
// void rc_channels_callback_function(const PX4_TOPIC_T(rc_channels) &msg) {
|
||||
void rc_channels_callback_function(const px4_rc_channels &msg);
|
||||
void rc_channels_callback_function(const px4_rc_channels &msg) {
|
||||
PX4_INFO("I heard: [%llu]", msg.data().timestamp_last_valid);
|
||||
}
|
||||
@@ -64,9 +62,8 @@ SubscriberExample::SubscriberExample() :
|
||||
|
||||
/* Do some subscriptions */
|
||||
/* Function */
|
||||
// PX4_SUBSCRIBE(_n, rc_channels, rc_channels_callback_function, _interval);
|
||||
_n.subscribe<px4_rc_channels>(rc_channels_callback_function); //ROS version
|
||||
|
||||
|
||||
// [> Class Method <]
|
||||
// PX4_SUBSCRIBE(_n, rc_channels, SubscriberExample::rc_channels_callback, this, 1000);
|
||||
// [> No callback <]
|
||||
|
||||
@@ -41,7 +41,7 @@
|
||||
|
||||
using namespace px4;
|
||||
|
||||
void rc_channels_callback_function(const PX4_TOPIC_T(rc_channels) &msg);
|
||||
void rc_channels_callback_function(const px4_rc_channels &msg);
|
||||
|
||||
class SubscriberExample {
|
||||
public:
|
||||
@@ -56,7 +56,6 @@ protected:
|
||||
int32_t _interval;
|
||||
px4_param_t _p_test_float;
|
||||
float _test_float;
|
||||
// px4::PX4_SUBSCRIBER(rc_channels) * _sub_rc_chan;
|
||||
px4::Subscriber<px4_rc_channels> * _sub_rc_chan;
|
||||
|
||||
// void rc_channels_callback(const PX4_TOPIC_T(rc_channels) &msg);
|
||||
|
||||
Reference in New Issue
Block a user