We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fbc5d30 commit 12aed64Copy full SHA for 12aed64
app/src/processing/app/debug/Uploader.java
@@ -215,7 +215,11 @@ public void message(String s) {
215
}
216
if (s.indexOf("Programmer is not responding") != -1 ||
217
s.indexOf("programmer is not responding") != -1 ||
218
- s.indexOf("protocol error") != -1) {
+ s.indexOf("protocol error") != -1 ||
219
+ s.indexOf("avrdude: ser_open(): can't open device") != -1 ||
220
+ s.indexOf("avrdude: ser_drain(): read error") != -1 ||
221
+ s.indexOf("avrdude: ser_send(): write error") != -1 ||
222
+ s.indexOf("avrdude: error: buffered memory access not supported.") != -1) {
223
exception = new RunnerException(_("Problem uploading to board. See http://www.arduino.cc/en/Guide/Troubleshooting#upload for suggestions."));
224
return;
225
0 commit comments