-
Notifications
You must be signed in to change notification settings - Fork 3k
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
Include mbed_debug.h in mbed.h #4185
Conversation
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.
+1
/morph test |
@tommikas I restarted Jenkins again, can you have a look at the failure? I don't find it related to this changeset |
/morph test |
@0xc0170 It sort of is related. This inclusion causes a conflict between two functions called
https://github.com/ARMmbed/mbed-os/blob/master/platform/mbed_debug.h#L60 The version in nanostack-libservice is a legacy function that was left for backwards compatibility when migrating to using mbed-trace. I think it could safely be cleaned out at this point. @SeppoTakalo, @kjbracey-arm, what do you think? |
Result: SUCCESSYour command has finished executing! Here's what you wrote!
OutputAll builds and test passed! |
Any ideas? |
Ok, who can take the action for this one? I'll label this as "needs work" |
I actually seem to have an old PR into libservice to clean out some ns_trace stuff. I think the PR got left hanging due to summer holidays and organizational changes. I'll update that. Once that is in @SeppoTakalo or someone can submit the updated libservice here. |
bump @SeppoTakalo |
@theotherjimmy Just updated the aforementioned PR. |
@SeppoTakalo @tommikas What's the status of this? |
@sarahmarshy What's the status of this one? |
@theotherjimmy #4235 should unblock this. |
#4235 has been merged. CI is passing now. |
Description
Allows access to mbed debug printing when including
mbed.h
Steps to test or reproduce
Currently, you must include
mbed_debug.h
in addition tombed.h
if you want to use the debug print function.