Skip to content
Snippets Groups Projects
  1. Aug 04, 2015
    • Richard Wackerbarth's avatar
      Restore test · 35afea1c
      Richard Wackerbarth authored
      PR#2572 Changed this because of faulty Boolean Logic
      
      NOT(A OR (NOT B) OR (NOT C)) !=
      
      (NOT A) AND ((NOT B) OR C))
      
      
      Besides, the compiler should be smart enough to
      optimize this without help from the programmer
      35afea1c
  2. Aug 01, 2015
  3. Jul 31, 2015
  4. Jul 19, 2015
  5. Jul 16, 2015
  6. May 20, 2015
  7. May 18, 2015
  8. May 15, 2015
  9. May 13, 2015
  10. Apr 13, 2015
  11. Apr 04, 2015
  12. Mar 27, 2015
  13. Mar 19, 2015
    • alexborro's avatar
      Fix "Stop Print" function in the LCD menu · e650d404
      alexborro authored
      When one hit "Stop Print" option in LCD menu, the command buffer was not
      cleared. The printer keep moving until the buffer has been emptied.
      Actually I could not clear the command buffer as well.. I don't know
      why, it doesnt work as expected.
      I need to implement a routine inside Stepper ISR to handle such
      situation.
      e650d404
  14. Mar 03, 2015
  15. Mar 02, 2015
  16. Feb 16, 2015
    • AnHardt's avatar
      Fix iss#1492 · 6cdcd6c6
      AnHardt authored
      Introduced lcd_strlen() and lcd_strlen_P().
      Replaced the old functions where necessary.
      Reworked language_ru.h.
      
      Speeded up test for zero length string in cardreader.cpp
      6cdcd6c6
  17. Feb 07, 2015
  18. Jan 24, 2015
  19. Dec 18, 2014
  20. Dec 17, 2014
  21. Dec 13, 2014
  22. Dec 01, 2014
    • Scott Lahteine's avatar
      Completed SORT_USES_MORE_RAM implementation · b4e287fe
      Scott Lahteine authored
      For the MORE_RAM option we need to buffer both the short and long
      names, even though long names are sometimes redundant. Worst case, all
      the names are max length. We can save some RAM by not storing these. We
      could save more RAM by only storing the visible part of the long name.
      b4e287fe
    • Scott Lahteine's avatar
      # This is a combination of 4 commits. · de725bd4
      Scott Lahteine authored
      # The first commit's message is:
      SD Card Alpha Sorting
      
      First iteration of alphabetical sorting for SD cards, both
      slow+efficient and fast+rammy. Option for folders to sort first, last,
      or not at all.
      
      # This is the 2nd commit message:
      
      Expand on More RAM concept, address minor bugs
      
      # This is the 3rd commit message:
      
      Improvements, more SORT_USES_MORE_RAM
      
      With this option, always keeps the dir in RAM, doubling as a cache for
      getfilename. A board with only 8K of SRAM is cutting it very close.
      
      # This is the 4th commit message:
      
      Completed SORT_USES_MORE_RAM implementation
      
      For the MORE_RAM option we need to buffer both the short and long
      names, even though long names are sometimes redundant. Worst case, all
      the names are max length. We can save some RAM by not storing these. We
      could save more RAM by only storing the visible part of the long name.
      de725bd4
  23. Nov 27, 2014
    • Scott Lahteine's avatar
      Completed SORT_USES_MORE_RAM implementation · 8ebefe6d
      Scott Lahteine authored
      For the MORE_RAM option we need to buffer both the short and long
      names, even though long names are sometimes redundant. Worst case, all
      the names are max length. We can save some RAM by not storing these. We
      could save more RAM by only storing the visible part of the long name.
      8ebefe6d
Loading