1. 21 Jul, 2016 1 commit
  2. 18 Jul, 2016 5 commits
  3. 14 Jul, 2016 2 commits
    • Martino Facchin's avatar
      Send an USB remote wakeup if data need to be written · 7874386c
      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.
      7874386c
    • Martino Facchin's avatar
      [AVR][USB] fix IRQ flags clearing · 5e146c41
      Martino Facchin authored
      5e146c41
  4. 12 Jul, 2016 1 commit
  5. 11 Jul, 2016 1 commit
  6. 07 Jul, 2016 3 commits
  7. 28 Jun, 2016 2 commits
  8. 05 Jun, 2016 1 commit
    • kellerkindt's avatar
      Fix buffer being overwritten by multiple twi_transmit calls · 43d5e073
      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.
      43d5e073
  9. 18 May, 2016 1 commit
  10. 10 May, 2016 3 commits
  11. 28 Apr, 2016 1 commit
  12. 26 Apr, 2016 1 commit
  13. 20 Apr, 2016 3 commits
  14. 15 Apr, 2016 1 commit
  15. 14 Apr, 2016 1 commit
  16. 06 Apr, 2016 1 commit
    • Martino Facchin's avatar
      [AVR] Discover newer bootloader at runtime · 5e194bd8
      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)
      5e194bd8
  17. 05 Apr, 2016 1 commit
  18. 04 Apr, 2016 4 commits
  19. 31 Mar, 2016 1 commit
  20. 22 Mar, 2016 1 commit
    • per1234's avatar
      AVR recipe.ar.pattern backwards compatibility · 33c95586
      per1234 authored
      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.
      33c95586
  21. 19 Mar, 2016 1 commit
  22. 18 Mar, 2016 1 commit
  23. 15 Mar, 2016 1 commit
    • per1234's avatar
      Clean up comments in platform.txt · 48d574b9
      per1234 authored
      - 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
      48d574b9
  24. 10 Mar, 2016 2 commits