-
Notifications
You must be signed in to change notification settings - Fork 29
config: Add OUTPUT_EXT
#242
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
Conversation
Codecov Report
@@ Coverage Diff @@
## master #242 +/- ##
=======================================
Coverage 96.96% 96.96%
=======================================
Files 92 92
Lines 2673 2673
=======================================
Hits 2592 2592
Misses 81 81 |
Requires: ARMmbed/mbed-tools#242 The optional `OUTPUT_EXT` field in Mbed OS `targets.json` specifies the format of the output image. This is important because * some targets only support one image format * each post-binary hook outputs one image only This avoids confusion of having both .hex and .bin images generated while only one of them is usable.
Requires: ARMmbed/mbed-tools#242 The optional `OUTPUT_EXT` field in Mbed OS `targets.json` specifies the format of the output image. This is important because * some targets only support one image format * each post-binary hook outputs one image only This avoids confusion of having both .hex and .bin images generated while only one of them is usable.
^^^ Is the coverage report expected? I did update |
Looks correct to me. The coverage tool just measures how many lines of Python code were hit. This commit doesn't change any Python code, it just edits the |
The optional `OUTPUT_EXT` field in Mbed OS `targets.json` specifies the format of the output image. This is important because * some targets only support one image format * each post-binary hook outputs one image only This avoids confusion of having both .hex and .bin images generated while only one of them is usable. Fixes ARMmbed#216
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.
LGTM
Description
Fixes: #216
The optional
OUTPUT_EXT
field in Mbed OStargets.json
specifies the format of the output image. This is important becauseThis avoids confusion of having both .hex and .bin images generated while only one of them is usable.
Note: The CMake change in Mbed OS is ARMmbed/mbed-os#14472
Test Coverage