aboutsummaryrefslogtreecommitdiff
path: root/cores/arduino/WProgram.h
AgeCommit message (Collapse)Author
2010-12-03Replacing custom String.toInt() function with a call to atol().David A. Mellis
2010-09-081280 -> 1280/2560.David A. Mellis
2010-07-04Modifying String from new/delete to malloc()/free(). Also #include'ing ↵David A. Mellis
WString.h from WProgram.h.
2010-05-16Adding A0=14, A1=15, etc. aliases for analog input pins and modifying ↵David A. Mellis
analogRead() to accept them (in addition to 0, 1, 2, etc.). Removing some unused code elsewhere.
2009-12-29Adding tone() and noTone() functions, using Brett Hagman's Tone library.David A. Mellis
2009-11-21Improving third-party hardware support:David A. Mellis
- moving back to multple cores per platform - using target instead of platform - moving per-board and per-programmer preferences out of Preferences.java and into a new Target class - adding a new "target" preference - support for platform:value values in board preferences for bootloader path and core - XXX: need to support platform:value syntax for board upload.using preferences.
2009-11-07Moving things around.David A. Mellis
2008-10-26Moving makeWord() function defintion into WMath.cpp (out of WProgram.h).David A. Mellis
2008-10-25Adding word datatype and cast/construction macros, bitRead(), bitWrite(), ↵David A. Mellis
bitSet(), bitClear(), bit().
2008-09-15Adding #ifdef guard to WProgram.h to prevent multiple #includes. David A. Mellis
Removing Print class inheritance from Firmata since it's not clear that it can be implemented in a way that's compatible with the Firmata protocol and the Print class interface.
2008-04-18Factored out print() and println() from HardwareSerial to a base class for ↵David A. Mellis
sharing with other things (e.g. LiquidCrystal library), eliminating #include's of avr/signal.h (deprecated). Upping version number and modifying to do list.
2008-03-08Added timeout (in microseconds) parameter to pulseIn(). Defaults to 1000000 ↵David A. Mellis
(1 second).
2007-11-21Adding map(), fixing radians() and degrees(), adding cast functions (int(x) ↵David A. Mellis
instead of (int) x), adding interrupts() and noInterrupts(), etc.
2007-10-06Moving hardware/targets to hardware/cores.David A. Mellis