-
Notifications
You must be signed in to change notification settings - Fork 115
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
Cleanup #21
Cleanup #21
Conversation
… and updated curly brace locations according to: http://wiki.ros.org/CppStyleGuide section 6.
A quick look at the source looks encouraging. Thank you for taking the time to add the functionality and help with the maintenance! I'll try to find some time to test the driver with a -45 model later this week. |
I was trying to separate out the two pull requests, the cleanup and the parameterization but did them in backwards order. I will close #20 since it is included in this PR anyhow. |
I just came across an interesting case that I cannot test with the -25. Can someone who has a -45 or -35 please test this prior to merging this PR.
Does your nav message contain orientation information? |
@tonybaltovski (Just wanted to check prior to spending a lot of time cleaning everything up and find out you had something else in mind.) |
I ran the test @samkys asked for with a -45 on my desk.
The Odometry messages on nav/odom included orientation information, which is what we would want. Good to go on this end. |
@samkys that would be ideal to clean-up the package. I can if you just want to add the roslint package. |
@tonybaltovski I added roslint and ran it. I cleaned up as much as I could but there were a few lines that I'm not sure what to do with. A lot of the errors it was throwing were too long of lines so I wrapped them around. Take a look and see what you think. |
Awesome, thanks for that! |
This PR is a cleanup of the microstrain_3dm file. It had various tabs and indentation levels making it very hard to read and follow. Also curly brace location was corrected according to:
http://wiki.ros.org/CppStyleGuide section 6.
Tabs were replaced with spaces. Everything compiles and it was tested with the -25 model and it works with that model.