-
Notifications
You must be signed in to change notification settings - Fork 1k
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
Add MANUAL_CONTROL handling with new plugin #378
Conversation
mavlink_msg_manual_control_decode(msg, &manual_control); | ||
|
||
mavros_msgs::ManualControl manual_control_ros; | ||
manual_control_ros.header.stamp = ros::Time::now(); // correct? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, correct because message don't have any timestamp.
Ok, now it looks good to merge. But maybe you implement send code too? |
I'm not aware that this mavlink message goes both ways. I think it is only On Fri, Aug 28, 2015 at 6:12 PM, Vladimir Ermakov [email protected]
|
You may check QGC code. In SITL/HIL mode it has ability to send joystick data. I think via that message. |
To be honest, at the moment I'm not sure If I can manage time to look into On Fri, Aug 28, 2015 at 7:38 PM, Vladimir Ermakov [email protected]
|
Ok. |
Add MANUAL_CONTROL handling with new plugin
@vooon I'm just testing this using running mavros on my odroid connected to the pixhawk via the TELEM port and I can't see the MANUAL_CONTROL stream there. However, if I connect to the pixhawk from my laptop using USB cable, I do see the stream. Do you know what could be the cause? |
I think stream rate not configured on TELEM. See |
Hmm, now stream config for usb is moved to mavlink app, but you still can configure streams via |
Ok, thanks! On Mon, Aug 31, 2015 at 12:24 PM, Vladimir Ermakov <[email protected]
|
Cleaned up pull request #377 (I messed up my repo in the process of fixing).