-
Notifications
You must be signed in to change notification settings - Fork 38
Add Renesas RA support #579
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
Open
wdx04
wants to merge
25
commits into
mbed-ce:main
Choose a base branch
from
wdx04:add-renesas-ra
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
f2e374f
added support for Cortex-M85 CPUs
wdx04 e1fb9eb
add minimal lincense header
wdx04 63b16b3
enable SPI Burst mode only on RA8E1
wdx04 f5a9eb5
added "rtc-clock-source" config option to RA MCUs
wdx04 d15f2c4
added GPIO speed settings for UART/I2C/SPI/CAN peripherals
wdx04 1ca53a1
remove RTT code from TARGET_RA
wdx04 749eb6c
Add non-cached section support and use it for RTT (#582)
multiplemonomials 2ef1880
Updated ESP32 driver documentation (#583)
zhiyong-ft 003c815
Updated command to get RSSI (#584)
zhiyong-ft 81a4a64
Update CHANGELOG with RSSI retrieval for ESP32 (#585)
zhiyong-ft 8a6b2d8
added support for Cortex-M85 CPUs
wdx04 20eb845
add minimal lincense header
wdx04 dec0517
enable SPI Burst mode only on RA8E1
wdx04 70aca09
added "rtc-clock-source" config option to RA MCUs
wdx04 28bfbc7
added GPIO speed settings for UART/I2C/SPI/CAN peripherals
wdx04 b9ddb6b
remove RTT code from TARGET_RA
wdx04 e9cbe2f
use Mbed-provided memory bank definitions in linker scripts
wdx04 983e4da
Merge branch 'add-renesas-ra' of https://github.com/wdx04/mbed-os int…
wdx04 271ebd8
added RAM vector table
wdx04 98ff6a8
more flexible clock settings for pwmout
wdx04 4a59768
Fix some bugs revealed by Greentea tests.
wdx04 7479569
updated linker scripts to include the options bytes
wdx04 829d643
passed Greentea's RTC tests
wdx04 14cdbbc
passed FlashIAP and Storage tests.
wdx04 a58a81c
bug fixes for CAN/CAN FD, support 5Mbps CAN FD data rate on FPB-RA8E1
wdx04 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
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
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
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
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.
Do we know why it's crashing?
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.
The exact reason is unknown yet. But RASC generated code uses __init_array_start/__init_array_end instead of __libc_init_array. The difference between the two is that __libc_init_array also calls __preinit_array_start/__preinit_array_end and _init(), before calling __init_array_start/__init_array_end.