1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-17 22:23:10 +03:00

Merge pull request #1775 from ribbons/memory-usage

Improve low free memory reporting
This commit is contained in:
Cristian Maglie
2014-05-03 10:59:37 +02:00

View File

@ -1682,7 +1682,7 @@ public class Sketch {
int warnDataPercentage = Integer.parseInt(prefs.get("build.warn_data_percentage"));
if (maxDataSize > 0 && dataSize > maxDataSize*warnDataPercentage/100)
System.out.println(_("Low memory available, stability problems may occur"));
System.err.println(_("Low memory available, stability problems may occur."));
}
protected boolean upload(String buildPath, String suggestedClassName, boolean usingProgrammer) throws Exception {