-
Notifications
You must be signed in to change notification settings - Fork 3k
Cellular: Replace UARTSerial references with BufferedSerial #12211
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
Cellular: Replace UARTSerial references with BufferedSerial #12211
Conversation
@hugueskamba, thank you for your changes. |
ed7fc0d
to
49618c4
Compare
Similar failure than in another ESP PR |
features/cellular/framework/targets/GEMALTO/CINTERION/GEMALTO_CINTERION.cpp
Show resolved
Hide resolved
features/cellular/framework/targets/GENERIC/GENERIC_AT3GPP/GENERIC_AT3GPP.cpp
Show resolved
Hide resolved
features/cellular/framework/targets/MultiTech/DragonflyNano/PPP/SARA4_PPP.cpp
Show resolved
Hide resolved
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.
You should remove drivers/ from path where used because it is not be needed
49618c4
to
15c92b6
Compare
@AnttiKauppila |
I believe it is preferred to use more explicit include path, including the module. Not considering how our tools work (including a lot), when we use anything else, this will still stand and work without any troubles. Otherwise we might have some surprises with some tools. I would expect this to be in our guidelines. I've just checked, it's there:
We already updated platform/drivers code. |
@AnttiKauppila @0xc0170 Should I revert back to what I had originally (it takes me no time)? |
While working on public headers clean-up this summer, we started to update mbed-os core code with more explicit include paths that specify the module. |
15c92b6
to
5348c9d
Compare
Done. |
5348c9d
to
537319c
Compare
CI started |
Test run: FAILEDSummary: 1 of 4 test jobs failed Failed test jobs:
|
Please review failures
|
`BufferedSerial` is `UARTSerial` renamed to convey the original purpose of the class. It is the recommended buffered I/O serial class.
537319c
to
9e11e5b
Compare
Thank you. This should fix it. |
CI started |
Test run: SUCCESSSummary: 11 of 11 test jobs passed |
Summary of changes
BufferedSerial
isUARTSerial
renamed to convey the original purposeof the class. It is the recommended buffered I/O serial class.
Impact of changes
Migration actions required
Documentation
Pull request type
Test results
Reviewers
@AnttiKauppila