aboutsummaryrefslogtreecommitdiff
path: root/cores/arduino
AgeCommit message (Expand)Author
2012-01-02Fixing findUntil() problem with repeated initial characters. (Jeffery.zksun)David A. Mellis
2012-01-02Fixing warnings (unsigned comparisons to 0). (maniacbug)David A. Mellis
2012-01-02Fixing static is not at beginning of declaration warnings (maniacbug).David A. Mellis
2011-12-30Simplifying microseconds <-> clock cycles conversions. (Rob Tillaart)David A. Mellis
2011-12-02Updated reference voltage defines for ATmega1284P.David A. Mellis
2011-12-02Support 3rd external interrupt on ATmega1284P (maniacbug)David A. Mellis
2011-12-02Fixing delayMicroseconds() timing for 20 MHz clocks. (Erdem U. Altinyurt)David A. Mellis
2011-11-19readBytes() and readBytesUntil() handle zero bytes and return # of bytes read.David A. Mellis
2011-11-16Fixed handling of Ax constants on LeonardoZach Eveland
2011-11-09restored original non-interrupt-driven DiskLoaderZach Eveland
2011-10-31Merge branch 'new-extension' of github.com:arduino/Arduino into diskloader_re...Zach Eveland
2011-10-29Protecting the version of parseInt() and parseFloat(). (Paul Stoffregen)David A. Mellis
2011-10-27Revert "Merge branch 'master' of github.com:arduino/Arduino into diskloader_r...Zach Eveland
2011-10-27Merge branch 'new-extension' of github.com:arduino/Arduino into diskloader_re...Zach Eveland
2011-10-27changes in core and boards.txt to support new bootloaderZach Eveland
2011-10-27Merge branch 'master' of github.com:arduino/Arduino into diskloader_rebootZach Eveland
2011-10-25Bug fix in replace().David A. Mellis
2011-10-24Moving ARDUINO_MAIN from main.cpp to wiring_digital.c and hiding PA, PB, etc.David A. Mellis
2011-10-24Correcting analogReference() constants for ATtiny24/44/84 and 25/45/85.David A. Mellis
2011-10-21Lowering timer 1 prescale factor (to 8 from 64) for F_CPU less than 8 MHz.David A. Mellis
2011-10-10Fixing more warnings (Paul Stoffregen).David A. Mellis
2011-10-02Fixing warnings in Stream (Paul Stoffregen)David A. Mellis
2011-09-30Using alternate timer 0 overflow interrupt signal name for ATtiny24/44/84.David A. Mellis
2011-09-16added Mouse.isPressed() methodZach Eveland
2011-09-16made some Keyboard methods privateZach Eveland
2011-09-16added support for TIMER4D used for PWM on Leonardo and Micro D6Zach Eveland
2011-09-16added automatic one-shot TX and RX LED control for sketch USBZach Eveland
2011-09-16added to sketch iProduct and iManufacturer strings identifying board as eithe...Zach Eveland
2011-09-16Merge branch 'new-extension' of https://github.com/arduino/Arduino into new-e...Zach Eveland
2011-09-13fixed analog pin mapping for 32u4Zach Eveland
2011-09-13fixed Mouse button assignmentsZach Eveland
2011-09-12made Mouse.buttons() private. removed MOUSE_ALL macroZach Eveland
2011-09-09Don't consume trailing char in parseInt() and parseFloat (Paul Stoffregen).David A. Mellis
2011-09-08Merge branch 'new-extension' of https://github.com/arduino/Arduino into new-e...Zach Eveland
2011-09-08fixed bug where sketches over 28k caused subsequent auto-reset-and-upload att...Zach Eveland
2011-09-08added compile-time definition of sketch PID. PID is pulled from variants/leo...Zach Eveland
2011-09-08Revert "support compile-time passing of PID to Leonardo/Micro sketches. PID ...Zach Eveland
2011-09-08support compile-time passing of PID to Leonardo/Micro sketches. PID comes fr...Zach Eveland
2011-09-07Making Print::write(char *) non-virtual.David A. Mellis
2011-09-07Changing to a simpler mental model for serialEvent (Paul Stoffregen).David A. Mellis
2011-09-06changed auto-reset trigger condition to fix auto-reset-and-upload for Windows...Zach Eveland
2011-09-05changed baudrate for auto-reset-and-upload back to 1200 bps. specified ardui...Zach Eveland
2011-09-05Merge branch 'new-extension' of https://github.com/arduino/Arduino into new-e...Zach Eveland
2011-08-31Moving serialEvent() calls from RX interrupts to main for() loop (after loop()).David A. Mellis
2011-08-31Renaming writeError() to getWriteError() in Print (and Stream and friends).David A. Mellis
2011-08-30added Mouse press() and release()Zach Eveland
2011-08-30on a CDC or HID write() error, call setWriteError(). better handling of USB_...Zach Eveland
2011-08-30Created an abstract base class UDP to match the Client and Server classes, an...amcewen
2011-08-30support for non-Leonardo boards is back!Zach Eveland
2011-08-30CDC and HID write() routines now return non-void - brought in line with new w...Zach Eveland