Skip to content
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

Do not overwrite mbed_app.json if it exists #850

Merged
merged 1 commit into from
Mar 4, 2019

Conversation

bridadan
Copy link
Contributor

Fixes #848.

mbed/mbed.py Outdated
if not os.path.exists(mbed_app_file_name):
data = {'target_overrides':{'K64F':{'platform.stdio-baud-rate': 9600}}}
with open(mbed_app_file_name, "w") as mbed_app_file:
mbed_app_file(json.dumps(data, filehandler, indent=4))
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I might have to go back and revisit dump vs dumps, as far as i remember, former was used with file handlers, and latter was just to dump strings.

mbed/mbed.py Outdated
if not os.path.exists(mbed_app_file_name):
data = {'target_overrides':{'K64F':{'platform.stdio-baud-rate': 9600}}}
with open(mbed_app_file_name, "w") as mbed_app_file:
mbed_app_file(json.dumps(data, filehandler, indent=4))
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

mbed_app_file(json.dumps(data, filehandler, indent=4))

should be replaced with

mbed_app_file(json.dumps(data, mbed_app_file, indent=4)) ?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh man yeah, I goofed this whole thing up lol, thanks for the catch. I was trying to go too quick.

@bridadan
Copy link
Contributor Author

Ok updated. I moved it to the with syntax just to avoid needing to explicitly close the file descriptor. Its a personal preference of mine but I can switch it back if you like.

@bridadan
Copy link
Contributor Author

I think there's an issue with Mbed OS 5.11.4 and Python 3: ARMmbed/mbed-os#9521 (comment)

So the error here is not related to the change.

@cmonr
Copy link
Contributor

cmonr commented Feb 15, 2019

@bridadan In the Python 3 PR that you commented in (not sure why it doesn't show up as a link here...), I commented that it looks like an error that was caught with a PR coming into 5.11.5.

Also mentioned that I'm looking to add basic compile tests in Travis CI to make sure this doesn't happen again... Not sure what you want to do from here.

@theotherjimmy theotherjimmy merged commit 52ed388 into ARMmbed:master Mar 4, 2019
theotherjimmy added a commit to theotherjimmy/mbed-cli that referenced this pull request Mar 4, 2019
**Fixed:**
* ARMmbed#850 Don't overwrite `mbed_app.json` on newly imported projects
* ARMmbed#857 Stream downloads of mbed 2 zip files. Prevents Out of memory(OOM) errors
@theotherjimmy theotherjimmy mentioned this pull request Mar 4, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants