- 29 Aug, 2016 1 commit
-
-
Kyle Chisholm authored
I was compiling with -Werror and this little error popped up
-
- 14 Aug, 2016 1 commit
-
-
Paul Vivier authored
Also includes Micros per https://www.arduino.cc/en/Reference/SoftwareSerial
-
- 11 Aug, 2016 1 commit
-
-
Cristian Maglie authored
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)
-
- 09 Aug, 2016 1 commit
-
-
Cristian Maglie authored
This must be made together with the release of AVR core 1.6.13. This reverts commit d20e60862344eb864ab384abe3d85f55c1845f3f.
-
- 05 Aug, 2016 1 commit
-
-
Martino Facchin authored
-
- 25 Jul, 2016 4 commits
-
-
Martino Facchin authored
-
Martino Facchin authored
-
Cristian Maglie authored
-
Cristian Maglie authored
This avoid build errors on old libraries. It may possibly be removed in the future after a period of transition.
-
- 22 Jul, 2016 1 commit
-
-
Martino Facchin authored
[AVR][USB] Configurable USB_VERSION value via define
-
- 21 Jul, 2016 1 commit
-
-
Martino Facchin authored
Send an USB remote wakeup if data need to be written
-
- 18 Jul, 2016 5 commits
-
-
Sandeep Mistry authored
To allow sketches to override value as per #58.
-
Sandeep Mistry authored
-
Sandeep Mistry authored
Speed and size improvement in Print::printFloat()
-
Sandeep Mistry authored
Add getTimeout accessor method.
-
-
- 14 Jul, 2016 2 commits
-
-
Martino Facchin authored
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.
-
Martino Facchin authored
-
- 13 Jul, 2016 1 commit
-
-
Martino Facchin authored
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
-
- 12 Jul, 2016 1 commit
-
-
Sandeep Mistry authored
-
- 11 Jul, 2016 1 commit
-
-
Arturo Guadalupi authored
Subtract one from USB_EP_SIZE in USB_SendSpace
-
- 07 Jul, 2016 3 commits
-
-
Arturo Guadalupi authored
SAM: Add Serial_::availableForWrite
-
Arturo Guadalupi authored
Add PIN_* defines to AVR variants
-
Arturo Guadalupi authored
Port SDA and SCL symbols to SAM
-
- 28 Jun, 2016 2 commits
-
-
Ivan-Perez authored
-
Ivan-Perez authored
-
- 05 Jun, 2016 1 commit
-
-
kellerkindt authored
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.
-
- 18 May, 2016 1 commit
-
-
Martino Facchin authored
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
-
- 10 May, 2016 3 commits
-
-
Brent Wilkins authored
-
Martino Facchin authored
-
Martino Facchin authored
-
- 28 Apr, 2016 1 commit
-
-
- 26 Apr, 2016 1 commit
-
-
Cristian Maglie authored
Merge branch 'sam-recipe_ar_pattern-backwards-compatibility' of https://github.com/sandeepmistry/Arduino
-
- 20 Apr, 2016 3 commits
-
-
Cristian Maglie authored
-
Christopher Andrews authored
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.
-
Christopher Andrews authored
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 ); ```
-
- 15 Apr, 2016 1 commit
-
-
gh-megabit authored
-
- 14 Apr, 2016 1 commit
-
-
Sandeep Mistry authored
This avoids dealing with ZLP’s in USB_Send, because the max packet size will be EP size - 1.
-
- 06 Apr, 2016 1 commit
-
-
Martino Facchin authored
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)
-
- 05 Apr, 2016 1 commit
-
-
Bradley Luke Totaro authored
-