-
Notifications
You must be signed in to change notification settings - Fork 3k
Updated hal & cmsis support for MTS Dragonfly and MTS mDot #1001
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
e5f05b8
952cc75
d41ef07
88f9d7e
eb3650b
62121b7
da7c5fb
db72429
3b896d6
3876957
101141f
90f6719
bbe23be
6bd25a1
b1c4a63
506ead1
6b1bf31
2f56029
67f6603
28fdf0b
0d98831
0fc5e25
7e3aaa6
52be48d
812d629
d4740c5
a0ebff5
b7e8c02
2d65b89
54f4391
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 |
---|---|---|
|
@@ -593,11 +593,11 @@ | |
</option> | ||
<option> | ||
<name>OCOutputOverride</name> | ||
<state>0</state> | ||
<state>1</state> | ||
</option> | ||
<option> | ||
<name>OOCOutputFile</name> | ||
<state>{{name}}.bin</state> | ||
<state>application.bin</state> | ||
</option> | ||
<option> | ||
<name>OOCCommandLineProducer</name> | ||
|
@@ -627,7 +627,7 @@ | |
<archiveVersion>1</archiveVersion> | ||
<data> | ||
<prebuild></prebuild> | ||
<postbuild></postbuild> | ||
<postbuild>"$PROJ_DIR$\post-build.bat" "$TARGET_DIR$"</postbuild> | ||
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. Shall this be removed? 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. mike - was this script suppose to be added to the export directory? 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. Our process for exporting to IAR isn't completely automated because there doesn't seem to be a mechanism to insert additional files into the zip that gets created by the exporter. We need to put in the post-build script, srec_cat application, and bootloader binary, so the IAR build with the current configuration succeeds. |
||
</data> | ||
</settings> | ||
<settings> | ||
|
@@ -711,7 +711,7 @@ | |
</option> | ||
<option> | ||
<name>IlinkIcfOverride</name> | ||
<state>0</state> | ||
<state>1</state> | ||
</option> | ||
<option> | ||
<name>IlinkIcfFile</name> | ||
|
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.
Why {{name}} was changed to predefined appliation name?
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 predefined application name is referenced by the post-build script, which combines the bootloader and application binaries into a single image. I was unable to figure out how to reference {{name}} (or find out if it is stored as an IAR environment variable) from my post-build batch script.