-
Notifications
You must be signed in to change notification settings - Fork 27
Refactor MIMXRT105x target labels and linker script, locate general data in DTCM memory instead of OCRAM for improved performance #157
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -58,8 +58,8 @@ if(MBED_GENERATE_CLION_DEBUG_CFGS) | |
| endif() | ||
|
|
||
| # Escape quotes and ampersands | ||
| string(REPLACE "\"" """ ELEMENT "${ELEMENT}") | ||
| string(REPLACE "&" "&" ELEMENT "${ELEMENT}") | ||
| string(REPLACE "\"" """ ELEMENT "${ELEMENT}") | ||
|
Collaborator
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. Moved this to fix a bug where quote characters would get turned into """, because it replaced the ampersand after escaping the quote X_X |
||
|
|
||
| if("${ELEMENT}" MATCHES " ") | ||
| string(APPEND GDBSERVER_ARGS_STR ""${ELEMENT}"") | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -61,7 +61,7 @@ exit | |
| COMMAND ${JLINK} | ||
| ${JLINK_SELECT_ARG} | ||
| ${JLINK_NOGUI_ARG} | ||
| -Device ${JLINK_CPU_NAME} | ||
| -Device \"${JLINK_CPU_NAME}\" | ||
|
Collaborator
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. Fixes a bug where the loader selection arg to J-Link was missing quotes so it didn't work |
||
| -Speed ${JLINK_CLOCK_SPEED} | ||
| -if ${JLINK_UPLOAD_INTERFACE} | ||
| -JTAGConf -1,-1 | ||
|
|
@@ -81,7 +81,7 @@ set(UPLOAD_GDBSERVER_DEBUG_COMMAND | |
| "${JLINK_GDBSERVER}" | ||
| ${JLINK_SELECT_ARG} | ||
| ${JLINK_NOGUI_ARG} | ||
| -Device ${JLINK_CPU_NAME} | ||
| -Device \"${JLINK_CPU_NAME}\" | ||
| -Speed ${JLINK_CLOCK_SPEED} | ||
| -endian little | ||
| -if ${JLINK_UPLOAD_INTERFACE} | ||
|
|
||
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.
Fixes compile error for MIMXRT1060_EVK, whoops