aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-09-12Spaces to tabIván Pérez
2016-09-12WString: add `toDouble`Iván Pérez
`toFloat` internally converts into double and then truncates into a float, so why not add a method to return the double?
2016-09-08Merge pull request #5300 from mischnic/attiny_anlReferenceSandeep Mistry
Add all analog references supported by the ATtinyX5 series
2016-09-07Requested changes to not change code for non ATtinyX5sNiklas Mischkulnig
2016-08-28remove extra semicolonKyle Chisholm
I was compiling with -Werror and this little error popped up
2016-08-27Add all analog references supported by the ATtinyX5 seriesNiklas Mischkulnig
2016-08-14Update SoftwareSerialExample.inoPaul Vivier
Also includes Micros per https://www.arduino.cc/en/Reference/SoftwareSerial
2016-08-11Use a specific hardware/package_index_bundled.json. AVR core version to 1.6.13Cristian Maglie
Previously, during the build, the full package_index.json was downloaded and distributed with the Arduino IDE. This lead to a situation where it was difficult to test new AVR cores before publishing them to the public package_index.json. Now the bundled AVR core is specificed in the file: `hardware/package_index_bundled.json` this index is loaded from the IDE at startup and the package_index.json is overlayed on it. This should also solve part of #5143 (Repeatable builds and snapshots of package/library indexes)
2016-08-09Revert "Bump avr core version to 1.6.13"Cristian Maglie
This must be made together with the release of AVR core 1.6.13. This reverts commit d20e60862344eb864ab384abe3d85f55c1845f3f.
2016-08-05Bump avr core version to 1.6.13Martino Facchin
2016-07-25Move lto flags before -Wl to fix Mega2560 "relax" substitutionMartino Facchin
2016-07-25publish avr core 1.6.12Martino Facchin
2016-07-25Enable LTOCristian Maglie
2016-07-25Added -fpermissive flag.Cristian Maglie
This avoid build errors on old libraries. It may possibly be removed in the future after a period of transition.
2016-07-22Merge pull request #5128 from facchinm/configurable_usb210Martino Facchin
[AVR][USB] Configurable USB_VERSION value via define
2016-07-21Merge pull request #5135 from facchinm/usbsuspend_resumeMartino Facchin
Send an USB remote wakeup if data need to be written
2016-07-18Wrap SoftwareSerial _SS_MAX_RX_BUFF defineSandeep Mistry
To allow sketches to override value as per #58.
2016-07-18Cast to "unsigned int" instead of just "unsigned" for consistencySandeep Mistry
2016-07-18Merge pull request #4667 from bblanchon/patch-1Sandeep Mistry
Speed and size improvement in Print::printFloat()
2016-07-18Merge pull request #4718 from mattb5906/new-feature/stream-timeout-get-4680Sandeep Mistry
Add getTimeout accessor method.
2016-07-18Merge branch 'invalidated-string-move' of ↵Cristian Maglie
https://github.com/sandeepmistry/Arduino
2016-07-14Send an USB remote wakeup if data need to be writtenMartino Facchin
On Linux, setting autosuspend_delay_ms to N and control to auto allows the host pc to suspend the peripheral. Some Linux distro (Ubuntu, Mint) apply this behaviour by default. If the sketch's prints where less frequent than N milliseconds the sketch prints would never arrive. This patch allows sending a remote wakeup event to unsuspend the peripheral and allow the serial prints to be received.
2016-07-14[AVR][USB] fix IRQ flags clearingMartino Facchin
2016-07-13configurable USB_VERSION string via defineMartino Facchin
to allow WebUSB development, provide a way to change the USB_VERSION reported using an additional core. The additional (webUSB) core will survive IDE and AVR core updates
2016-07-12Make String::move of an invalidated String result in an invalidated StringSandeep Mistry
2016-07-11Merge pull request #4864 from sandeepmistry/avr-usb-txArturo Guadalupi
Subtract one from USB_EP_SIZE in USB_SendSpace
2016-07-07Merge pull request #5018 from sandeepmistry/sam-SerialUSB.availableForWriteArturo Guadalupi
SAM: Add Serial_::availableForWrite
2016-07-07Merge pull request #4814 from sandeepmistry/avr-pin_Arturo Guadalupi
Add PIN_* defines to AVR variants
2016-07-07Merge pull request #4813 from sandeepmistry/sam-i2c-symbolsArturo Guadalupi
Port SDA and SCL symbols to SAM
2016-06-28WString.h: allow modifying the string while iteratingIvan-Perez
2016-06-28WString.h: Add const qualifier to `begin` and `end` functionsIvan-Perez
2016-06-05Fix buffer being overwritten by multiple twi_transmit callskellerkindt
Fixes that more complex methods (like Stream::print(float)) do not work properly. Without this fix, Wire.print(1.01f); results in '1' because Print::printFloat(double, uint8_t) performs multiple print() and therefore twi_transmit calls. Also Wire.println("Heyho"); results only in a newline character.
2016-05-18Move Caterina_BL related defines into generic USBCore.hMartino Facchin
In an excess of confidence, these defines were added to Leonardo's variant.h 3rd party boards sometimes avoid inheriting this variant but they still define USBCON, thus breaking the build
2016-05-10Fixing issue #4940 (typo)Brent Wilkins
2016-05-10update AVR core to 1.6.11Martino Facchin
2016-05-10add support for remote upload on Yun shieldMartino Facchin
2016-04-28Merge branch 'upload-without-verify' of https://github.com/gh-megabit/ArduinoCristian Maglie
2016-04-26Merge branch 'sam-recipe_ar_pattern-backwards-compatibility' of ↵Cristian Maglie
https://github.com/sandeepmistry/Arduino
2016-04-20Removed extra whitespaces in WString.hCristian Maglie
2016-04-20Removed C++11 dependency for `begin()` and `end()`Christopher Andrews
As I was not able to base the return types of `begin()` & `end()` off the c_str() function, I have changed the source so the features can be used by C++98 code, while still allowing ranged loops in C++11.
2016-04-20Updated String library to use C++11 iterators.Christopher Andrews
This will allow using the String library in a ranged for loop: ```C++ String s = "Hi, this is a test"; for( char c : s ) Serial.print( c ); ```
2016-04-15Implement Do-Not-Verify-After-Upload preference for Serial Uploadsgh-megabit
2016-04-14Subtract one from USB_EP_SIZE in USB_SendSpaceSandeep Mistry
This avoids dealing with ZLP’s in USB_Send, because the max packet size will be EP size - 1.
2016-04-06[AVR] Discover newer bootloader at runtimeMartino Facchin
Replaces #4280, only checks for the bootloader once Tested with Hoodloader2, should work with every LUFA-derived bootloader released after 2014 (.apitable_signatures section must be placed at end of the flash) BootloaderAPITable.S : .global BootloaderAPI_Signatures BootloaderAPI_Signatures: .long BOOT_START_ADDR ; Start address of the bootloader .word 0xDF00 ; Signature for the CDC class bootloader .word 0xDCFB ; Signature for a LUFA class bootloader makefile: BOOT_API_LD_FLAGS += $(call BOOT_SECTION_LD_FLAG, .apitable_signatures, BootloaderAPI_Signatures, 8)
2016-04-05Update SoftwareSerial.cppBradley Luke Totaro
2016-04-04Add PIN_* defines to AVR variantsSandeep Mistry
2016-04-04Add comment for archive_file_pathSandeep Mistry
2016-04-04Merge pull request #4737 from per1234/recipe_ar_pattern-backwards-compatibilitySandeep Mistry
AVR recipe.ar.pattern backwards compatibility
2016-04-04Merge pull request #4716 from asukiaaa/masterSandeep Mistry
Corrected comments of rx and tx in a SoftwareSerial example.
2016-03-31Merge pull request #4669 from sandeepmistry/software-serial-peek-castArturo Guadalupi
Add missing cast to SoftwareSerial::peek() when returning buffered value