aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-10-31updated boards.txtFederico Fissore
2012-10-29new boards menu with custom submenusFederico Fissore
https://code.google.com/p/arduino/issues/detail?id=257
2012-10-26Merge remote-tracking branch 'arduino/ide-1.5.x' into ide-1.5.xCristian Maglie
2012-10-26fixed verbose mode for avrdude in platform.txtFede85
2012-10-22Moved WiFi library in the proper placeCristian Maglie
2012-10-18Merge remote-tracking branch 'origin/master' into merge-1.0.1Cristian Maglie
2012-10-18review of typos a and small errors in some examplesFede85
2012-10-18Merged latest changes in AVR arduino coreCristian Maglie
2012-10-18Merged upstream arduino branchCristian Maglie
2012-10-15Merge branch 'master' into boards-cputypeFederico Fissore
2012-10-15boards and cpu type menusFederico Fissore
2012-10-11Merge branch 'scheduler'Cristian Maglie
2012-10-09Reordered boards menuCristian Maglie
2012-10-09Adding ATmega644P check to ATmega1284P check.David A. Mellis
2012-09-24Moved SD lib into root libraries folderCristian Maglie
2012-09-13Merge branch 'master' of ../wifishieldDavid A. Mellis
2012-09-13Moving into firmwares directory.David A. Mellis
2012-09-13Moving ATmegaXXU2 firmwares into subdirectory.David A. Mellis
2012-09-13Moving ATmega32U4 Timer 2 #undef's to Leonardo pins_arduino.h file.David A. Mellis
2012-09-13Merge pull request #102 from sgk/leonardoToneDavid A. Mellis
Fix for tone() on Leonardo.
2012-09-13Avoid serial buffer overrun on leonardoPeter Van Hoyweghen
2012-09-10Merge branch 'master' into upload-16u2Cristian Maglie
Conflicts: hardware/arduino/sam/cores/arduino/USB/CDC.cpp hardware/arduino/sam/cores/arduino/USB/USBCore.cpp
2012-09-07Upload over debug portCristian Maglie
2012-09-03LiquidCrystal library is already multiplatform compliant, moved into ↵Cristian Maglie
libraries folder
2012-08-30Changing setting of the UMSELn bits (for UART mode) and serial config values.David A. Mellis
Before, the UMSELn1 bit was being to set to 1, putting the UART into a reserved mode. Now, we only set the high (0x80) bit to 1 for the ATmega8, which is needed to access UCSRnC (whose i/o address is shared with UBRRH). Also, no longer bitwise-or the new config with the existing register value, because we're actually configuring all the settings in the register. (We're not using UCPOL, but it's supposed to be 0 in asynchronous mode.)
2012-08-30Renaming serial config constants to, e.g., SERIAL_8N1.David A. Mellis
2012-08-30Merge pull request #109 from Alarus/masterDavid A. Mellis
Serial.begin() parameter to set data bits, parity, stop bits.
2012-08-30Fixing Serial.flush() breakage on Leonardo (WestFW).David A. Mellis
http://code.google.com/p/arduino/issues/detail?id=1020
2012-08-29Fixing ATmega8 breakage from flush() change. (WestFW)David A. Mellis
http://code.google.com/p/arduino/issues/detail?id=1019
2012-08-29Adding overloads so Serial.write(0) works.David A. Mellis
http://code.google.com/p/arduino/issues/detail?id=1006
2012-08-28Serial.flush() waits for last character to be transmitted (michele.mazzucchi)David A. Mellis
http://code.google.com/p/arduino/issues/detail?id=871
2012-08-16Fix issue 866Adam Dunlap
Fix issue 866 by adding a const qualifier to what the F macro casts to.
2012-08-14Update hardware/arduino/cores/arduino/HardwareSerial.cppAlarus
New Serial.begin(baud, config);
2012-08-14Update hardware/arduino/cores/arduino/HardwareSerial.hAlarus
New Serial.begin(baud, config);
2012-08-14Update hardware/arduino/cores/arduino/HardwareSerial.cppAlarus
New Serial.begin(baud, config);
2012-08-14Merge branch 'new-linker'Cristian Maglie
Conflicts: hardware/arduino/sam/variants/arduino_due_x/linker_scripts/gcc/flash.ld
2012-08-12Update hardware/arduino/cores/arduino/HardwareSerial.cppAlarus
Adding advanced begin (); with the ability to specify the length of bits, parity, stop bits.
2012-08-12Update hardware/arduino/cores/arduino/HardwareSerial.cppAlarus
Adding advanced begin (); with the ability to specify the length of bits, parity, stop bits.
2012-08-12Update hardware/arduino/cores/arduino/HardwareSerial.cppAlarus
Adding advanced begin (); with the ability to specify the length of bits, parity, stop bits.
2012-08-12Update hardware/arduino/cores/arduino/HardwareSerial.hAlarus
Adding advanced begin (); with the ability to specify the length of bits, parity, stop bits.
2012-08-12Update hardware/arduino/cores/arduino/HardwareSerial.hAlarus
Adding advanced begin (); with the ability to specify the length of bits, parity, stop bits.
2012-08-08Fix for tone() on Leonardo.Shigeru KANEMOTO
2012-08-06Fixed all boards.txt definitions in AVR arch.Cristian Maglie
2012-08-04Merge branch 'audio'Cristian Maglie
Conflicts: hardware/arduino/sam/variants/arduino_due_x/libsam_sam3x8e_gcc_rel.a hardware/arduino/sam/variants/arduino_due_x/libsam_sam3x8e_gcc_rel.a.txt hardware/arduino/sam/variants/arduino_due_x/variant.h
2012-07-15Use "wiring" (not "stk500v2") avrdude protocol for uploads to Mega 2560.David A. Mellis
It performs the auto-reset in avrdude. Otherwise, some uploads seem to fail (possibly because it takes too long to launch avrdude from the IDE, so there's too much of a delay between the auto-reset done by the IDE and the upload). http://code.google.com/p/arduino/issues/detail?id=806
2012-06-28Print "ovf" if float to be printed doesn't fit in a long.David A. Mellis
http://code.google.com/p/arduino/issues/detail?id=967
2012-06-27Merged masterCristian Maglie
2012-06-26Added default extra_flags parameter to allow build on all boardsCristian Maglie
2012-06-26Merged upstream Arduino master branchCristian Maglie
2012-06-23Print "inf" for infinite floating point numbers (using isinf()).David A. Mellis
http://code.google.com/p/arduino/issues/detail?id=961