ArduinoCore-avr/cores/robot
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
..
Arduino.h Added license for Arduino.h, binary.h and main.cpp (master branch) 2014-02-13 17:48:47 +01:00
CDC.cpp Robot has its own core 2013-05-17 11:02:00 +02:00
Client.h Added license for Client, IPAddressm and Server (master branch) 2014-02-13 17:49:14 +01:00
HID.cpp Robot has its own core 2013-05-17 11:02:00 +02:00
HardwareSerial.cpp Robot has its own core 2013-05-17 11:02:00 +02:00
HardwareSerial.h Robot has its own core 2013-05-17 11:02:00 +02:00
IPAddress.cpp Added license for Client, IPAddressm and Server (master branch) 2014-02-13 17:49:14 +01:00
IPAddress.h Added license for Client, IPAddressm and Server (master branch) 2014-02-13 17:49:14 +01:00
Platform.h Robot has its own core 2013-05-17 11:02:00 +02:00
Print.cpp Robot has its own core 2013-05-17 11:02:00 +02:00
Print.h Robot has its own core 2013-05-17 11:02:00 +02:00
Printable.h Robot has its own core 2013-05-17 11:02:00 +02:00
Server.h Added license for Client, IPAddressm and Server (master branch) 2014-02-13 17:49:14 +01:00
Stream.cpp Fix of a bug 2014-05-30 11:47:08 +05:30
Stream.h Robot has its own core 2013-05-17 11:02:00 +02:00
Tone.cpp Robot has its own core 2013-05-17 11:02:00 +02:00
USBAPI.h Robot has its own core 2013-05-17 11:02:00 +02:00
USBCore.cpp Robot has its own core 2013-05-17 11:02:00 +02:00
USBCore.h Robot has its own core 2013-05-17 11:02:00 +02:00
USBDesc.h Robot has its own core 2013-05-17 11:02:00 +02:00
Udp.h Robot has its own core 2013-05-17 11:02:00 +02:00
WCharacter.h Robot has its own core 2013-05-17 11:02:00 +02:00
WInterrupts.c Robot has its own core 2013-05-17 11:02:00 +02:00
WMath.cpp Robot has its own core 2013-05-17 11:02:00 +02:00
WString.cpp Robot has its own core 2013-05-17 11:02:00 +02:00
WString.h Robot has its own core 2013-05-17 11:02:00 +02:00
binary.h Added license for Arduino.h, binary.h and main.cpp (master branch) 2014-02-13 17:48:47 +01:00
main.cpp Added license for Arduino.h, binary.h and main.cpp (master branch) 2014-02-13 17:48:47 +01:00
new.cpp Robot has its own core 2013-05-17 11:02:00 +02:00
new.h Robot has its own core 2013-05-17 11:02:00 +02:00
wiring.c Robot has its own core 2013-05-17 11:02:00 +02:00
wiring_analog.c Robot has its own core 2013-05-17 11:02:00 +02:00
wiring_digital.c Robot has its own core 2013-05-17 11:02:00 +02:00
wiring_private.h Robot has its own core 2013-05-17 11:02:00 +02:00
wiring_pulse.c Robot has its own core 2013-05-17 11:02:00 +02:00
wiring_shift.c Robot has its own core 2013-05-17 11:02:00 +02:00