Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-07-25 | Added -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-22 | Merge pull request #5128 from facchinm/configurable_usb210 | Martino Facchin | |
[AVR][USB] Configurable USB_VERSION value via define | |||
2016-07-21 | Merge pull request #5135 from facchinm/usbsuspend_resume | Martino Facchin | |
Send an USB remote wakeup if data need to be written | |||
2016-07-18 | Wrap SoftwareSerial _SS_MAX_RX_BUFF define | Sandeep Mistry | |
To allow sketches to override value as per #58. | |||
2016-07-18 | Cast to "unsigned int" instead of just "unsigned" for consistency | Sandeep Mistry | |
2016-07-18 | Merge pull request #4667 from bblanchon/patch-1 | Sandeep Mistry | |
Speed and size improvement in Print::printFloat() | |||
2016-07-18 | Merge pull request #4718 from mattb5906/new-feature/stream-timeout-get-4680 | Sandeep Mistry | |
Add getTimeout accessor method. | |||
2016-07-18 | Merge branch 'invalidated-string-move' of ↵ | Cristian Maglie | |
https://github.com/sandeepmistry/Arduino | |||
2016-07-14 | Send an USB remote wakeup if data need to be written | Martino 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 clearing | Martino Facchin | |
2016-07-13 | configurable USB_VERSION string via define | Martino 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-12 | Make String::move of an invalidated String result in an invalidated String | Sandeep Mistry | |
2016-07-11 | Merge pull request #4864 from sandeepmistry/avr-usb-tx | Arturo Guadalupi | |
Subtract one from USB_EP_SIZE in USB_SendSpace | |||
2016-07-07 | Merge pull request #5018 from sandeepmistry/sam-SerialUSB.availableForWrite | Arturo Guadalupi | |
SAM: Add Serial_::availableForWrite | |||
2016-07-07 | Merge pull request #4814 from sandeepmistry/avr-pin_ | Arturo Guadalupi | |
Add PIN_* defines to AVR variants | |||
2016-07-07 | Merge pull request #4813 from sandeepmistry/sam-i2c-symbols | Arturo Guadalupi | |
Port SDA and SCL symbols to SAM | |||
2016-06-28 | WString.h: allow modifying the string while iterating | Ivan-Perez | |
2016-06-28 | WString.h: Add const qualifier to `begin` and `end` functions | Ivan-Perez | |
2016-06-05 | Fix buffer being overwritten by multiple twi_transmit calls | kellerkindt | |
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-18 | Move Caterina_BL related defines into generic USBCore.h | Martino 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-10 | Fixing issue #4940 (typo) | Brent Wilkins | |
2016-05-10 | update AVR core to 1.6.11 | Martino Facchin | |
2016-05-10 | add support for remote upload on Yun shield | Martino Facchin | |
2016-04-28 | Merge branch 'upload-without-verify' of https://github.com/gh-megabit/Arduino | Cristian Maglie | |
2016-04-26 | Merge branch 'sam-recipe_ar_pattern-backwards-compatibility' of ↵ | Cristian Maglie | |
https://github.com/sandeepmistry/Arduino | |||
2016-04-20 | Removed extra whitespaces in WString.h | Cristian Maglie | |
2016-04-20 | Removed 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-20 | Updated 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-15 | Implement Do-Not-Verify-After-Upload preference for Serial Uploads | gh-megabit | |
2016-04-14 | Subtract one from USB_EP_SIZE in USB_SendSpace | Sandeep 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 runtime | Martino 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-05 | Update SoftwareSerial.cpp | Bradley Luke Totaro | |
2016-04-04 | Add PIN_* defines to AVR variants | Sandeep Mistry | |
2016-04-04 | Add comment for archive_file_path | Sandeep Mistry | |
2016-04-04 | Merge pull request #4737 from per1234/recipe_ar_pattern-backwards-compatibility | Sandeep Mistry | |
AVR recipe.ar.pattern backwards compatibility | |||
2016-04-04 | Merge pull request #4716 from asukiaaa/master | Sandeep Mistry | |
Corrected comments of rx and tx in a SoftwareSerial example. | |||
2016-03-31 | Merge pull request #4669 from sandeepmistry/software-serial-peek-cast | Arturo Guadalupi | |
Add missing cast to SoftwareSerial::peek() when returning buffered value | |||
2016-03-22 | AVR recipe.ar.pattern backwards compatibility | per1234 | |
Define archive_file_path in Arduino AVR Boards platform.txt to provide backwards compatibility with IDE versions previous to 1.6.6. The archive_file_path value set in platform.txt is overridden in IDE 1.6.6+. This produces avr-ar commands identical to the previous behavior. | |||
2016-03-19 | Corrected comments of rx and tx for SoftwareSerial example. | asukiaaa | |
2016-03-18 | Add getTimeout accessor method. | mattb5906 | |
2016-03-15 | Clean up comments in platform.txt | per1234 | |
- Remove comment in Arduino AVR Boards platform.txt about -w flag. This is no longer relevant since the compiler warning level is now set by the user. - Fix typos | |||
2016-03-10 | Make SoftwareSerial receive buffer a uint8_t array | Sandeep Mistry | |
2016-03-10 | Add missing cast to SoftwareSerial::peek() when returning buffered value | Sandeep Mistry | |
2016-03-09 | Fix Wire register | Paolo Paolucci | |
Move TWBR register from Wire.cpp to twi.c file. | |||
2016-03-08 | Speed and size improvement in Print::printFloat() | Benoît Blanchon | |
Avoid using the overload of print() for signed integer since a negative value is not allowed here. This results in a smaller (unless print(int) is used somewhere else in the program) and faster code because the overload for unsigned integer is simpler. | |||
2016-03-04 | Move AVR Wire library utility folder under source | Sandeep Mistry | |
2016-03-04 | AVR core version to 1.6.10 | Cristian Maglie | |
2016-03-03 | Merge pull request #4646 from arduino/SimonePDA-patch-3 | Sandeep Mistry | |
Update library.properties | |||
2016-03-03 | Merge pull request #4645 from arduino/SimonePDA-patch-2 | Sandeep Mistry | |
Update library.properties | |||
2016-03-03 | Update library.properties | SimonePDA | |