forked from ARMmbed/mbed-os
-
Notifications
You must be signed in to change notification settings - Fork 27
Update of CMSIS and CMSIS-RTX to latest released version and newlly as submodules #521
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
Draft
JohnK1987
wants to merge
30
commits into
master
Choose a base branch
from
cmsis6
base: master
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.
+720
−69,609
Draft
Changes from all commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
f988b1f
Fix for rebase
d3f662b
Add CMSIS_6 and CMSIS-RTX as submodules
d23feb7
First compilable integration of CMSIS6 + RTX 5.9
05fb8bf
fixes for first GT pass and backward compatibility
fdb84ba
Conf update
e30e382
compilation fix
ab2299f
Core registers name fix
00a8d67
Readme update
1ce9007
Some fixes
e6137e5
Delete after rebase
23134f3
fix gitmodules
b8eb8a6
RTX cmake fix
5b6138b
Test
b3d8cf7
Test2
1b46b21
Revert back
d5d7b04
add actions for submodules
a60fdfd
update the actions
31df5b2
typo in path
4afb269
Remove similar steps in actions
ff148f9
cmake script correction
e0c3418
TPI to TPIU fix
fce9281
fix basic checks
e7ebe81
fix stm32L1 IRQn_Type name
a59802a
STM32F0L0G0
d39fa23
prevent ASM
38d3a82
fix ASM issue
ef61a32
register name correction to CMSIS 6 - TPI to TPIU
8c8a284
Fix ITM TPIU Ambiq Micro
aa5211d
CY RTX struct fix
eebca2f
Mango fix
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -127,6 +127,15 @@ jobs: | |
| steps: | ||
| - name: Checkout | ||
| uses: actions/checkout@v4 | ||
| with: | ||
| submodules: recursive # fetch submodules | ||
|
|
||
| - name: Verify submodules present | ||
| run: | | ||
| git config --global --add safe.directory "$GITHUB_WORKSPACE" | ||
| git submodule status | ||
| test -f cmsis/CMSIS-RTX/Config/RTX_Config.h | ||
| test -f cmsis/CMSIS_6/CMSIS/Core/Include/cmsis_version.h | ||
|
Comment on lines
+130
to
+138
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Allow submodules for the GT with verification |
||
| - name: Install python3-venv | ||
| run: | | ||
|
|
||
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,11 @@ | ||
| [submodule "cmsis/CMSIS_6"] | ||
| path = cmsis/CMSIS_6 | ||
| url = https://github.com/ARM-software/CMSIS_6 | ||
|
|
||
| [submodule "cmsis/CMSIS-RTX"] | ||
| path = cmsis/CMSIS-RTX | ||
| url = https://github.com/ARM-software/CMSIS-RTX | ||
|
|
||
| [submodule "doxygen-awesome-css"] | ||
| path = tools/doxygen-awesome-css | ||
| url = https://github.com/jothepro/doxygen-awesome-css.git |
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 was deleted.
Oops, something went wrong.
This file was deleted.
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.
Allow submodules for the basic_checks tests