0
I Use This!
Inactive

Commits : Listings

Analyzed about 20 hours ago. based on code collected 1 day ago.
May 04, 2023 — May 04, 2024
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
1280 -> 1280/2560. More... over 13 years ago
Changing String::toCharArray() and getBytes() to accept a buffer, rather than return one. That way they don't expose the internal representation of the String class, allowing future optimization. Thanks to Paul Stoffregen. More... over 13 years ago
Returning a reference to a dummy character for indices beyond the string length (in operator[]). More... over 13 years ago
Adding some basic error checking to the String class (i.e. checking for a non-null buffer before modifying its contents). More... over 13 years ago
Now including stdlib.h from wiring.h so our abs() #define comes after the stdlib abs() definition (and therefore doesn't break it). More... over 13 years ago
Adding shiftIn() from Wiring (no count or delaytime though). More... over 13 years ago
Making Client inherit from Stream, which unforunately means taking peek() out of Stream for now, since there's no immediate implementation for Client. More... over 13 years ago
Adding Arduino BT w/ ATmega328 to the boards menu. More... over 13 years ago
No longer requiring WProgram.h for Print / Stream classes (replaced Arduino-specific type names in String). More... over 13 years ago
Moving SPI pin definitions into core (from SPI library): SS, MISO, MOSI, and SCK. More... almost 14 years ago
changing available() to return an int (because the Ethernet Client class or another stream might need more than 255 bytes). More... almost 14 years ago
added more String examples More... almost 14 years ago
Reverting changes to String class and modifying to allow + and += to work on more types. More... almost 14 years ago
removed append() from String library More... almost 14 years ago
checked in Xiaoyang Feng's changes to String library More... almost 14 years ago
Checked in Xiaoyang's changes to String library More... almost 14 years ago
Checked in Xiaoyang's changes to String library More... almost 14 years ago
INTERNAL -> INTERNAL1V1 AND INTERNAL2V56 on the Mega (issue #194). More... almost 14 years ago
whitespace. More... almost 14 years ago
Adding a peek() function to Stream and HardwareSerial (Serial). More... almost 14 years ago
Adding support for printing Strings to the Print class. More... almost 14 years ago
Modifying String from new/delete to malloc()/free(). Also #include'ing WString.h from WProgram.h. More... almost 14 years ago
Adding WString.h and WString.cpp straight from Wiring (r. 726). Won't actually work yet. More... almost 14 years ago
Disabling interrupts while digitalWrite() and pinMode() modify registers (issue #146). Updating revisions. More... almost 14 years ago
Re-enabling timer 2 pwm after tone() ends. Factored out common code to disable timers. More... almost 14 years ago
Adding a basic Stream interface and modifying HardwareSerial to inherit from it. More... almost 14 years ago
More accurate delay() function from BenF. More... almost 14 years ago
Adding A0=14, A1=15, etc. aliases for analog input pins and modifying analogRead() to accept them (in addition to 0, 1, 2, etc.). Removing some unused code elsewhere. More... almost 14 years ago
Adding 5V, 16 MHz versions of the Arduino Pro and Pro Mini (ATmega328 and ATmega168) to the boards menu. More... almost 14 years ago
Removing some Processing stuff that we don't need. Moving the Arduino Fio up in the boards menu. More... almost 14 years ago