1. 25 Jul, 2016 4 commits
  2. 22 Jul, 2016 1 commit
  3. 21 Jul, 2016 1 commit
  4. 18 Jul, 2016 5 commits
  5. 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
  6. 13 Jul, 2016 1 commit
  7. 12 Jul, 2016 1 commit
  8. 11 Jul, 2016 1 commit
  9. 07 Jul, 2016 3 commits
  10. 28 Jun, 2016 2 commits
  11. 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
  12. 18 May, 2016 1 commit
  13. 10 May, 2016 3 commits
  14. 28 Apr, 2016 1 commit
  15. 26 Apr, 2016 1 commit
  16. 20 Apr, 2016 3 commits
  17. 15 Apr, 2016 1 commit
  18. 14 Apr, 2016 1 commit
  19. 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
  20. 05 Apr, 2016 1 commit
  21. 04 Apr, 2016 4 commits
  22. 31 Mar, 2016 1 commit