-
Notifications
You must be signed in to change notification settings - Fork 13.6k
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
Pr snapdragon follow up #9503
Pr snapdragon follow up #9503
Conversation
Looks good. I don't have an answer for putchar at the moment. |
cfd5ced
to
c248abe
Compare
@@ -165,7 +165,7 @@ class DfMpu9250Wrapper : public MPU9250 | |||
math::LowPassFilter2p _gyro_filter_y; | |||
math::LowPassFilter2p _gyro_filter_z; | |||
|
|||
unsigned _publish_count; | |||
//unsigned _publish_count; |
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.
Note to myself: Remove this
c248abe
to
8d625fd
Compare
Driverframework was on an invalid commit after the PR was merged. I updated the submodule and squashed into the previous commit. |
Signed-off-by: Roman <bapstroman@gmail.com>
Signed-off-by: Roman <bapstroman@gmail.com>
- just use external mag, if they run together the sensor_mag_0 topic gets corrupted even though they publish on different instances - added sleep at two places, they resolve weird boot problems like params not being read correctly... Signed-off-by: Roman <bapstroman@gmail.com>
8d625fd
to
d43096a
Compare
|
||
int putchar(int character) | ||
{ | ||
PX4_ERR("Error: Calling unresolved symbol stub:[%s]", __FUNCTION__); |
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.
@dagar Is is better if we just print nothing for now? The only thing I worry about is that we forget about this and at some point it bites us.
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 I suppose that's a safe alternative.
Signed-off-by: Roman <bapstroman@gmail.com>
@RomanBapst things seem to be working and we can come back to it later if we ever develop a better understanding. |
Replaces #9467
@dagar I cherry-picked the commits from my previous PR which were not addressed by your recent PR's.