1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-23 19:21:59 +03:00

Updating SPI library error message and revisions.txt for final 0019 release.

This commit is contained in:
David A. Mellis
2010-09-03 23:12:12 +00:00
parent ca89be0a15
commit 5e2f82b742
2 changed files with 10 additions and 8 deletions

View File

@ -364,9 +364,9 @@ public class Compiler implements MessageConsumer {
}
if (pieces[3].trim().equals("SPI.h: No such file or directory")) {
e = new RunnerException("Import the SPI library from the Sketch menu.");
e = new RunnerException("Please import the SPI library from the Sketch > Import Library menu.");
s += "\nAs of Arduino 0019, the Ethernet library depends on the SPI library." +
"\nPlease import it from the Sketch > Import Library menu.";
"\nYou appear to be using it or another library that depends on the SPI library.";
}
if (exception == null && e != null) {