-
Notifications
You must be signed in to change notification settings - Fork 381
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
Add SRAM upload maximums #53
base: master
Are you sure you want to change the base?
Conversation
Added upload.maximum_data_size config entries to all Digisprk board types so that the Arduino IDE can calalcuate percentage of SRAM usage and warn if too much SRAM is used in a sketch.
Closes #44 |
This pull request is included in the new version 1.6.8 of Digistump avr core. |
Please could you be so kind and close the issue, since this repo is abandoned. |
Have you tried emailing Erik to to see if he will archive this repo, rather than asking everyone with open PRs to close them? |
I am not aware of al the consequences of an archived repo. |
I don't see what the problem is with having open PRs. Even if they aren't going to be merged, they can be helpful to the people who use this project and run into these problems. I don't think they should be closed unless they are actually invalid. @ArminJo are you authorized to speak on behalf of Digistump in these matters? |
@per1234 |
Thank you for that. From what I see providing support on the Arduino forum, digispark boards (and their clones) seem to be very common, so it's great if there is an actively maintained platform for them. However, I still don't see a benefit to closing the PRs in this repo. Instead, what you could do is add links to these PRs when you cherry pick the commits into your fork, which will add a reference in the PR thread here that people can follow to find your fork. |
I request only this PR's to close, which I included in the new version, since they are now obsolete. |
I see per1234 is thinking what I was thinking when I wrote that comment earlier. If the issues still exist in this repo, the PR is still valid for this repo. If you want to say that you've fixed it in your repo, and link to that, you're entirely welcome to. But until this repo is officially abandoned or archived, can't say I agree with closing PRs to issues it still has. That is not to say I wouldn't recommend others to use your repo instead of this one! ;) |
I'll send him an email now. I have been in communication with him in the past, and am also a backer of a current project, so there is a good chance at least of a reply! ;) |
Added upload.maximum_data_size config entries to all Digisprk board types so that the Arduino IDE can calculate percentage of SRAM usage and warn if too much SRAM is used in a sketch.
Further details as to how I determined the upload maximum to be 496 bytes, and how this affects the end user can be found in this forum post.
In a nutshell though, it goes from simply reporting ...
... to giving a overview of how much memory is free ...
... to being able to bug out when the user isn't aware of how strings gobble up memory ;)