-
Notifications
You must be signed in to change notification settings - Fork 3k
RTL8195AM - Remove redundant header file inclusion #5371
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
Closed
Closed
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Without this fix the tests-api-analogout test is fail with GCC_ARM.
Cleanup ICF file. No logic change. Signed-off-by: Tony Wu <[email protected]>
Remove redundant memory regions, and merge multiple RAM regions into one to solve ielftool zero padding issue. The side effect is less control over object files placement. It's all up to linker's best effort. Signed-off-by: Tony Wu <[email protected]>
This file is unused and redundant. Signed-off-by: Tony Wu <[email protected]>
HAL_RNG_GetRandomNumber is a deprecated API and replaced here with a call to HAL_RNG_GenerateRandomNumber. Doing so, we also rework the driver to use the 4 bytes returned by a call to HAL_RNG_GenerateRandomNumber instead of 1 byte out of 4. HAL_RNG_GenerateRandomNumber was not returning any error code, so now we can also check the return code.
There is only 1 RNG HW IP and we do not support more than one driver user at a time, so let's ensure this is the case and raise an error if needed.
Fix for Issue ARMmbed#5279 Signed-off-by: Mahadevan Mahesh <[email protected]>
Fix for Issue ARMmbed#5150 Signed-off-by: Mahadevan Mahesh <[email protected]>
The generic Flash support for L4 and L0 families is already there, but was not activated by default on 2 recentely added boards: DISCO_L475VG_IOT01A and DISCO_L072CZ_LRWAN1 This is done now.
They fail right now, Cores are not checked
Activate FLASH hal support on 2 STM32 boards
STM32: TRNG: remove call to deprecated HAL_RNG_GetRandomNumber
NUCLEO_F207ZG: Analogout improvement
RTL8195AM - Fix IAR ielftool zero-padding issue
…check Tools: Check for toolchain and core support for Arm Compilers
…ment MCUXpresso: Fix issue of ticker interrupt incorrectly firing
MCUXpresso: Fix LPTimer issue when using multiple timeout objects
Signed-off-by: Tony Wu <[email protected]>
4 tasks
The destination branch was changed, if that is the proper one now, this requires a rebase now. |
Cherrypicked on top of #5342 closing this one. Thanks for providing the fix. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
Remove redundant header file inclusion.
Fix compiler errors raised in #5342
Status
READY
Migrations
NO
Related PRs
#5342
Todos
NONE
Deploy notes
NONE
Steps to test or reproduce
NONE