mirror of
https://github.com/arduino/Arduino.git
synced 2025-02-07 01:54:26 +01:00
Updating SPI library error message and revisions.txt for final 0019 release.
This commit is contained in:
parent
ca89be0a15
commit
5e2f82b742
@ -364,9 +364,9 @@ public class Compiler implements MessageConsumer {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (pieces[3].trim().equals("SPI.h: No such file or directory")) {
|
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." +
|
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) {
|
if (exception == null && e != null) {
|
||||||
|
@ -1,17 +1,19 @@
|
|||||||
ARDUINO 0019
|
ARDUINO 0019 - 2010.09.03
|
||||||
|
|
||||||
[core / libraries]
|
[core / libraries]
|
||||||
|
|
||||||
|
* Revised Ethernet library (by Christian Maglie). This depends on the
|
||||||
|
new SPI library, so existing sketches will need: #include <SPI.h>
|
||||||
|
added to the top of their code.
|
||||||
|
|
||||||
|
* Added an SPI library (by Christian Maglie).
|
||||||
|
http://code.google.com/p/arduino/issues/detail?id=240
|
||||||
|
|
||||||
* Added aliases for the analog input pins: A0, A1, etc.
|
* Added aliases for the analog input pins: A0, A1, etc.
|
||||||
http://code.google.com/p/arduino/issues/detail?id=244
|
http://code.google.com/p/arduino/issues/detail?id=244
|
||||||
|
|
||||||
* Added a String class.
|
* Added a String class.
|
||||||
|
|
||||||
* Added an SPI library (by Christian Maglie).
|
|
||||||
http://code.google.com/p/arduino/issues/detail?id=240
|
|
||||||
|
|
||||||
* Revised Ethernet library (by Christian Maglie).
|
|
||||||
|
|
||||||
* Added a shiftIn() function (from Wiring).
|
* Added a shiftIn() function (from Wiring).
|
||||||
http://code.google.com/p/arduino/issues/detail?id=280
|
http://code.google.com/p/arduino/issues/detail?id=280
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user