Go to file
Amulya Kumar Sahoo 2f98fe16d7 Fix of a bug
Stream::find(char *target) passes NULL as “terminator” to Stream::findUntil(char *target, char *terminator), which immediately dereferences it by passing it on to strlen() :
 
bool Stream::find(char *target)
{
  return findUntil(target, NULL);
}
 
// as find but search ends if the terminator string is found
bool Stream::findUntil(char *target, char *terminator)
{
  return findUntil(target, strlen(target), terminator, strlen(terminator));
}
2014-05-30 11:47:08 +05:30
bootloaders Fix indentation (cosmetic) 2013-10-06 10:59:53 +02:00
cores Fix of a bug 2014-05-30 11:47:08 +05:30
firmwares updated config() methods in WiFi library 2013-03-28 12:56:57 +01:00
variants Revert "Changed pins definition in variants from constants to #defines." 2014-02-12 14:46:48 +01:00
boards.txt Added Arduino Ethernet variant. 2013-11-03 13:52:08 +01:00
programmers.txt Putting ArduinoISP back to 19200 baud. 2012-03-15 19:02:08 -04:00