aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-11-04Merged 1.0.2Cristian Maglie
Merge remote-tracking branch 'arduino/master' into ide-1.5.x Conflicts: app/src/processing/app/debug/AvrdudeUploader.java build/shared/examples/09.USB/Keyboard/KeyboardLogout/KeyboardLogout.ino build/shared/examples/09.USB/Keyboard/KeyboardReprogram/KeyboardReprogram.ino build/shared/examples/09.USB/Keyboard/KeyboardSerial/KeyboardSerial.ino build/shared/examples/09.USB/Mouse/ButtonMouseControl/ButtonMouseControl.ino build/shared/examples/09.USB/Mouse/JoystickMouseControl/JoystickMouseControl.ino hardware/arduino/boards.txt
2012-11-04Fixed verbose upload. Removed unused platform.txt params.Cristian Maglie
2012-11-04Merge remote-tracking branch 'ffissore/boards-cputype' into ide-1.5.xCristian Maglie
2012-11-02Updating Micro bootloader firmware.David A. Mellis
2012-11-02Added general yield()-hook for cooperative scheduling development (part 2)Cristian Maglie
2012-11-02HardwareSerial: change byte to uint8_t (since byte definition isn't present).David A. Mellis
2012-11-01Adding LilyPad Arduino USB.David A. Mellis
2012-10-31updated boards.txtFederico Fissore
2012-10-31updated boards.txtFederico Fissore
2012-10-31updated boards.txtFederico Fissore
2012-10-31updated boards.txtFederico Fissore
2012-10-31Added general yield()-hook for cooperative scheduling developmentCristian Maglie
2012-10-29new boards menu with custom submenusFederico Fissore
https://code.google.com/p/arduino/issues/detail?id=257
2012-10-27Adding Micro.David A. Mellis
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-18Updating USB core to work at 8 MHz (different PLLCSR value).David A. Mellis
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.