Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-04-04 | Added support for all variants of Sanguino | Kristian Sloth Lauszus | |
2012-10-09 | Adding ATmega644P check to ATmega1284P check. | David A. Mellis | |
2012-09-13 | Moving ATmega32U4 Timer 2 #undef's to Leonardo pins_arduino.h file. | David A. Mellis | |
2012-08-08 | Fix for tone() on Leonardo. | Shigeru KANEMOTO | |
2012-01-02 | Adding INPUT_PULLUP option pinMode(). (Paul Stoffregen). | David A. Mellis | |
This also changes pinMode(pin, INPUT); to explicitly disable the pull-up resistor, even if it was previously set. http://code.google.com/p/arduino/issues/detail?id=246 | |||
2011-12-30 | Simplifying microseconds <-> clock cycles conversions. (Rob Tillaart) | David A. Mellis | |
This should fix problems with overflows in pulseIn(). It may make millis() slightly less precise for clock speeds that aren't multiple of 1 million, but we don't really support those anyway. http://code.google.com/p/arduino/issues/detail?id=675 | |||
2011-12-02 | Updated reference voltage defines for ATmega1284P. | David A. Mellis | |
http://code.google.com/p/arduino/issues/detail?id=728 | |||
2011-10-24 | Moving ARDUINO_MAIN from main.cpp to wiring_digital.c and hiding PA, PB, etc. | David A. Mellis | |
http://code.google.com/p/arduino/issues/detail?id=677 http://code.google.com/p/arduino/issues/detail?id=691 | |||
2011-10-24 | Correcting analogReference() constants for ATtiny24/44/84 and 25/45/85. | David A. Mellis | |
DEFAULT, EXTERNAL, and INTERNAL have different values on those processors. | |||
2011-09-16 | added support for TIMER4D used for PWM on Leonardo and Micro D6 | Zach Eveland | |
2011-03-04 | Factoring pin definitions out of the core. | David A. Mellis | |
That is, there's now a pins/ directory in a platform, which includes multiple directories, each of which has its own pins_arduino.h. The boards.txt gets a new preferences, <BOARD>.build.pins, whose values is a sub-directory of the pins/ directory (possibly with a "platform:" prefix). That sub-directory is then placed in the include path during compilation. | |||
2011-03-03 | Moving all pin definitions into pins_arduino.h. | David A. Mellis | |
This is a step towards providing portability across AVR's by simply including an appropriate header file. | |||
2011-03-03 | Removing optimized digitalWrite(), digitalRead(), pinMode(). | David A. Mellis | |
2011-03-02 | Re-arranging header files and small fixes to optimized core functions. | David A. Mellis | |
2011-03-01 | Moving wiring.h contents into Arduino.h. | David A. Mellis | |
2011-03-01 | Renamed WProgram.h to Arduino.h. | David A. Mellis | |