-
Notifications
You must be signed in to change notification settings - Fork 3k
Release candidate for mbed-os-5.7.3 #5841
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
- serial_init, serial_free and serial_baud function moved from serial_device.c (specific to each STM32 family) to serial_api.c (common STM32 file) - default baudrate value was hardcoded to 9600 - Value is set now to MBED_CONF_PLATFORM_STDIO_BAUD_RATE for STDIO - Value is set now to MBED_CONF_PLATFORM_DEFAULT_SERIAL_BAUD_RATE for other use - UART init will not be stopped before calling serial_baud function
… signals are lost. It was observed at last for tests-api-spi ci-test-shield's test. This patch introduce usage of sdk5 origin implementation in which sd_nvic_critical_region_enter/exit is calling each time critical region is enter/exit. This fixes the issue.
…m diferent contexts. Orginal nordic critical primitives must been called in pairs from exacly the same function. As mbed hal call it in separate methods, so they are not suitable here.
Set buffer for 1 sample in analogin_read_u16. Before it assumes the buffer is set outside by the higher layer. Now it's temporarily located on the stack since only the ADC value is returned.
As MBEDTLS_AES_ALT is defined, alternative implementations for all AES functions should be defined.
…tive 1. aes.h/des.h/sha1.h/sha256.h/sha512.h includes config.h before aes_alt.h/des_alt.h/sha1_alt.h/sha256_alt.h/sha512_alt.h. 2. aes_alt.h/des_alt.h/sha1_alt.h/sha256_alt.h/sha512_alt.h should not be included in any other location. 3. Just include aes.h/des.h/sha1.h/sha256.h/sha512.h in aes_alt.c/des_alt.c/sha1_alt.c/sha256_alt.c/sha512_alt.c.
As MBEDTLS_AES_ALT is defined, alternative implementations for all AES functions should be defined.
* invalid namespace name documentation * vocabulary * typo * Add constants to improve readability * Fix abort usages
Read By group type response can return 4 descriptor discovered when the remote server have 4 descriptors with a 16 bit UUID. The handle, UUID pair get stored in a ble_gattc_desc_t that is 20 bytes long. This PR increase buffer size to handle this use case.
… mode - Add flag to SPI class to track if the SPI instance has locked deep sleep mode. - Wrap call to sleep_manager_lock_deep_sleep to only be called if SPI instance hasn't already locked deep sleep. - Wrap call to sleep_manager_unlock_deep_sleep to only be called if SPI has currently locked deep sleep mode.
… mode - Add flag to I2C class to track if the I2C instance has locked deep sleep mode. - Wrap call to sleep_manager_lock_deep_sleep to only be called if I2C instance hasn't already locked deep sleep. - Wrap call to sleep_manager_unlock_deep_sleep to only be called if I2C has currently locked deep sleep mode.
/morph build |
/morph mbed2-release |
Build : SUCCESSBuild number : 857 Triggering tests/morph test |
/morph uvisor-test |
@orenc17A Can you please review latest builds in uvisor CI (see the failure here) |
Exporter Build : FAILUREBuild number : 528 |
/morph export-build |
Exporter Build : SUCCESSBuild number : 531 |
Result: SUCCESSYour command has finished executing! Here's what you wrote!
|
Test : FAILUREBuild number : 701 |
I'll reproduce the failure locally (see the issue referenced above) /morph test |
Test : SUCCESSBuild number : 704 |
No description provided.