-
Notifications
You must be signed in to change notification settings - Fork 3k
TARGET_NRF5: Removed waiting for TX completed from 'serial_putc()'. #2822
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
Conversation
…erial_init()' to allow passing tests MBED_37/38.
retest uvisor |
1 similar comment
retest uvisor |
/morph test |
Result: SUCCESSYour command has finished executing! Here's what you wrote!
Outputmbed Build Number: 966 All builds and test passed! |
@anangl There is a conflict that needs to be resolved.
|
* 'master' of https://github.com/ARMmbed/mbed-os: (63 commits) [XDOT_L151] add IAR support Modify mbedtls scripts to add config-no-entropy.h Remove extra spaces [XDOT_L151] include xDot in mbed 5 releases [STM32F429ZI] INITIAL_SP correction [STM32F091RC] patch for tests-mbedmicro-rtos-mbed-threads mbedtls trng - remove MBEDTLS_ENTROPY_HARDWARE_ALT targets - add TRNG device_has to STM32F7 targets mbedtls - move TRNG mbed impl into platform folder TRNG HAL - fix length doc wording for get_bytes HAL TRNG - add dummy variable to empty structs TRNG - protect HAL implementation if DEVICE_TRNG is not defined TRNG - remove set seed function HAL - RNG rename to TRNG HAL - rng nuvoton cleanup code style RNG - fix warnings due to obj not used for some targets RNG - rename rng_get_numbers to rng_get_bytes mbedtls - mbed wrapper rename to mbed_rng HAL: Add rng set seed value function NUMAKER_PFM_NUC472: Add RGN HAL API implementation ... # Conflicts: # hal/targets/hal/TARGET_NORDIC/TARGET_NRF5/serial_api.c
Resolved. |
/morph test |
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.
LGTM
Result: SUCCESSYour command has finished executing! Here's what you wrote!
Outputmbed Build Number: 975 All builds and test passed! |
@mbed-bot: TEST HOST_OSES=ALL |
[Build 996] |
This waiting was earlier added (by me) to make tests MBED_37 and MBED_38 pass. I saw similar code in other ports, EFM32 for instance.
But obviously, this has a performance penalty, especially significant in case 'serial_putc' is called from an interrupt handler. Hence, I moved it to 'serial_init()'.