-
Notifications
You must be signed in to change notification settings - Fork 16
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
Synchronize upstream changes - May 2023 edition #160
Commits on May 17, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 97e2e60 - Browse repository at this point
Copy the full SHA 97e2e60View commit details -
Configuration menu - View commit details
-
Copy full SHA for e710a56 - Browse repository at this point
Copy the full SHA e710a56View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6763253 - Browse repository at this point
Copy the full SHA 6763253View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8ec1935 - Browse repository at this point
Copy the full SHA 8ec1935View commit details -
Configuration menu - View commit details
-
Copy full SHA for 581b8c3 - Browse repository at this point
Copy the full SHA 581b8c3View commit details -
test: Disable failing tests due to echo server
Some tests are failing as echo.mbedcloudtesting.com is not serving TLS requests anymore. Signed-off-by: Saheer Babu <saheer.babu@arm.com>
Configuration menu - View commit details
-
Copy full SHA for 8ca354f - Browse repository at this point
Copy the full SHA 8ca354fView commit details -
Configuration menu - View commit details
-
Copy full SHA for addab88 - Browse repository at this point
Copy the full SHA addab88View commit details -
Fix default interface ID only being used partially
If user sets the default interface ID for a socket (e.g. using setsockopt with SOCKET_INTERFACE_SELECT), the default interface should take over other interface selection mechanisms as a interface is bound to the socket. This applies for both IPv6 local and global scopes for unicast messages but not for multicast messages as these are bound to a multicast interface using SOCKET_IPV6_MULTICAST_IF socket option.
Configuration menu - View commit details
-
Copy full SHA for 75d4f3b - Browse repository at this point
Copy the full SHA 75d4f3bView commit details -
Targets: NXP: IMXRT: Fixed GCC_ARM lds syntax.
Signed-off-by: Yilin Sun <imi415@imi.moe>
Configuration menu - View commit details
-
Copy full SHA for cae29bb - Browse repository at this point
Copy the full SHA cae29bbView commit details -
If HAL implementation writes more than 8 bytes of data, error immediately. CANMessage defines only 8 bytes of data, lenght cannot be > 8. This fixes ARMmbed#15361 Signed-off-by: Martin Kojtal <martin.kojtal@arm.com>
Configuration menu - View commit details
-
Copy full SHA for 8203f58 - Browse repository at this point
Copy the full SHA 8203f58View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8822dc3 - Browse repository at this point
Copy the full SHA 8822dc3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 501aac3 - Browse repository at this point
Copy the full SHA 501aac3View commit details -
Configuration menu - View commit details
-
Copy full SHA for c7d1c3a - Browse repository at this point
Copy the full SHA c7d1c3aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5f5aa16 - Browse repository at this point
Copy the full SHA 5f5aa16View commit details -
Configuration menu - View commit details
-
Copy full SHA for 268c239 - Browse repository at this point
Copy the full SHA 268c239View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6b84be0 - Browse repository at this point
Copy the full SHA 6b84be0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1b34668 - Browse repository at this point
Copy the full SHA 1b34668View commit details -
Configuration menu - View commit details
-
Copy full SHA for fa152ed - Browse repository at this point
Copy the full SHA fa152edView commit details -
M487: Remove unused variable 'u32EscapeFrame'
Remove unused variable 'u32EscapeFrame' in BSP m480_ccap.h to avoid warnings
Configuration menu - View commit details
-
Copy full SHA for 4946e70 - Browse repository at this point
Copy the full SHA 4946e70View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2e07711 - Browse repository at this point
Copy the full SHA 2e07711View commit details -
Configuration menu - View commit details
-
Copy full SHA for f57a772 - Browse repository at this point
Copy the full SHA f57a772View commit details -
Configuration menu - View commit details
-
Copy full SHA for e7faa11 - Browse repository at this point
Copy the full SHA e7faa11View commit details -
Update MAX32670 peripheral drivers with final ones that use by SDK
Signed-off-by: Sadik.Ozer <sadik.ozer@analog.com>
Configuration menu - View commit details
-
Copy full SHA for c6878fb - Browse repository at this point
Copy the full SHA c6878fbView commit details -
MAX32670 apply mbed required changes on peripheral drivers
Signed-off-by: Sadik.Ozer <sadik.ozer@analog.com>
Configuration menu - View commit details
-
Copy full SHA for cddc66e - Browse repository at this point
Copy the full SHA cddc66eView commit details -
1. Update BSP CANFD driver 2. Notes for implementation (1) Each CANFD instance supports two IRQ lines. Use only line 0. Line 1 is not used. (2) For Rx disabling multiple filter handles, 1) Map all filter handles to filter handle 0 2) Use Rx FIFO 0 for filter handle 0 (3) For Rx enabling multiple filter handles, 1) Use Rx FIFO 0 for filter handle 0 2) Use Rx FIFO 1 for filter handle through first invoking can_filter() 3) Use dedicated Rx Buffer for other filter handles NOTE: H/W supports mask on Rx FIFO 0/1 but not on dedicated Rx Buffer. (4) For Tx, use only dedicated Tx Buffer. BSP CANFD driver doesn't support Tx FIFO/Queue. (5) Support no CAN FD.
Configuration menu - View commit details
-
Copy full SHA for a48178c - Browse repository at this point
Copy the full SHA a48178cView commit details -
Fix 'new[]' array freed with 'delete'
The array _scratch_buf is allocated using new[] in line 761 of mbed-os/storage/kvstore/securestore/source/SecureStore.cpp. But it was freed using delete.
Configuration menu - View commit details
-
Copy full SHA for 53d992c - Browse repository at this point
Copy the full SHA 53d992cView commit details -
Define default parameters of functions of derived class the same as t…
…he base class The member function bringup() of class ThreadInterface redefines parameter stack's default value to IPV6_STACK from the inherited default value DEFAULT_STACK (in Interface). The default value will be resolved statically, not by dispatch, so this can cause confusion. Similar arguments apply to LoWPANNDInterface and WisunInterface.
Configuration menu - View commit details
-
Copy full SHA for f7c4616 - Browse repository at this point
Copy the full SHA f7c4616View commit details -
Avoid calling virtual functions from constructors and destructors
Virtual functions are resolved statically (not dynamically) in constructors and destructors for the same class. The call should be made explicitly static by qualifying it using the scope resolution operator.
Configuration menu - View commit details
-
Copy full SHA for 3254009 - Browse repository at this point
Copy the full SHA 3254009View commit details -
Fix potentially overrunning write of sprintf
Format string "%d" requires 12 bytes (including the null terminator). Also, use snprintf instead of sprintf to prevent buffer overflow.
Configuration menu - View commit details
-
Copy full SHA for ddd91dd - Browse repository at this point
Copy the full SHA ddd91ddView commit details -
Signed-off-by: Jasper Jonker <jasper.jonker@wingtra.com>
Configuration menu - View commit details
-
Copy full SHA for 9423c40 - Browse repository at this point
Copy the full SHA 9423c40View commit details -
Signed-off-by: Jasper <jasper.jonker@wingtra.com>
Configuration menu - View commit details
-
Copy full SHA for 9d4afe0 - Browse repository at this point
Copy the full SHA 9d4afe0View commit details -
Change storage-class of secret_buf to static
Storing the address of a local variable (`secret_buf`) in non-local memory (`prf_ptr->secret`) can cause a dangling pointer bug if the address is used after the function returns.
Configuration menu - View commit details
-
Copy full SHA for 414bb4e - Browse repository at this point
Copy the full SHA 414bb4eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 0de96dc - Browse repository at this point
Copy the full SHA 0de96dcView commit details -
Configuration menu - View commit details
-
Copy full SHA for b23bd70 - Browse repository at this point
Copy the full SHA b23bd70View commit details -
Nuvoton: Enable extending sampling time for ADC/EADC
For all Nuvoton targets, enable extending sampling time in ADC/EADC clocks on per-pin basis.
Configuration menu - View commit details
-
Copy full SHA for 01a505b - Browse repository at this point
Copy the full SHA 01a505bView commit details