Skip to content
Snippets Groups Projects
  1. Sep 06, 2015
    • Scott Lahteine's avatar
      Disable SDSUPPORT by default · 7c7a4051
      Scott Lahteine authored
      As noted in #133 you can’t disable `SDSUPPORT` with `MAKRPANEL`,
      `PANEL_ONE`, `MINIPANEL`, or `ULTIPANEL`. This patch makes it possible
      to disable `SDSUPPORT` on these controllers and then disables it by
      default.
      
      Users of these controllers will now need to enable `SDSUPPORT` in their
      configurations as others currently do.
      7c7a4051
  2. Aug 28, 2015
  3. Aug 20, 2015
  4. Aug 11, 2015
    • AnHardt's avatar
      Make Z_PROBE a Z_MIN_PROBE (PR#65) · e2d69f66
      AnHardt authored
      Currently we use the probe exclusively as a device to find the build platform(bed).
      For the currently supported setups this means, we use it as a additional min-endstop.
      A triggered when not deployed probe disturbs the homing process for max-endstops.
      
      Rename ENDSTOPPULLUP_ZPROBE to ENDSTOPPULLUP_ZMIN_PROBE
      Rename Z_PROBE_ENDSTOP_INVERTING to Z_MIN_PROBE_ENDSTOP_INVERTING
      Rename Z_PROBE_ENDSTOP to Z_MIN_PROBE_ENDSTOP
      Rename DISABLE_Z_PROBE_ENDSTOP to DISABLE_Z_MIN_PROBE_ENDSTOP
      Rename Z_PROBE_REPEATABILITY_TEST to Z_MIN_PROBE_REPEATABILITY_TEST
      Rename Z_PROBE_ENDSTOP to Z_MIN_PROBE_ENDSTOP
      Adjust comments accordingly
      Remove Z_MAX  check for the probe in update_endstops().
      
      Using an delta related idea of @clefranc from #61,
      extended to the general change for all setups.
      
      Tested with Prusa i3, max-z-endstop and permanently triggered z-probe.
      Worked for @clefranc's delta.
      e2d69f66
  5. Aug 03, 2015
  6. Aug 01, 2015
  7. Jul 31, 2015
  8. Jul 27, 2015
  9. Jul 25, 2015
    • AnHardt's avatar
      Some more servo code tweaks · 8b876241
      AnHardt authored
      Just set up the pin. Don't move to a random position.
      
      Simplify servo::move()
      * servo::move() does not need the pin parameter - The pin is set during servo_init() with attach().
      * servo::move() does not need a return value.
      
      SERVO_LEVELING is the wrong condition to deactivate the servos.
      
      Remove some temporary (Servo *) variables.
      SanityCheck for the servo indexes.
      8b876241
  10. Jul 24, 2015
  11. Jul 19, 2015
    • Scott Lahteine's avatar
      Patch servos code for move · 3b23ccd3
      Scott Lahteine authored
      - Have `Servo::attach` explicitly return -1 if it fails
      - Check for -1 in `Servo::move` because `servoIndex` might be 0
      - Make `attach` / `detach` calls conditional on `SERVO_LEVELING`
      - Move `SERVO_LEVELING` define to `Conditionals.h`
      3b23ccd3
  12. Jul 15, 2015
  13. Jul 11, 2015
  14. Jul 09, 2015
  15. Jun 16, 2015
  16. Jun 15, 2015
    • AnHardt's avatar
      Rework buzzing (PR#2296) · 6ab7b560
      AnHardt authored
      by:
      Moving HAS_LCD_BUZZ macro to Coditionals.h
      Renaming HAS_LCD_BUZZ to HAS_BUZZER to make clear is has nothing to do with the lcd.
      Removing the ULTRALCD condition.
      
      Moving declaration of lcd_buzz() out of the ULTRA_LCD block in ultralcd.h
      Moving definition of lcd_buzz() out of the ULTIPANEL block in ultralcd.cpp
      Renaming lcd_buzz() to buzz() to make clear is has nothing to do with the lcd.
      
      All buzzing code is now only dependent on the existence of a BEEPER-pin or the definition of a LCD_USE_I2C_BUZZER.
      
      To do: Check the conditions for the BEEPER-pin in all pin-files.
      6ab7b560
  17. Jun 08, 2015
  18. Jun 07, 2015
  19. Jun 06, 2015
  20. May 31, 2015
  21. May 21, 2015
  22. May 18, 2015
    • Ed Boston's avatar
      More functional seperation · a83bf18e
      Ed Boston authored
      Moved SDCARDDETECTINVERTED and SDSLOW to Conditionals.h.
      Added U8GLIB_LM6059_AF to define display specific actions.
      Added reminder to compile in u8glib
      a83bf18e
  23. May 17, 2015
  24. May 11, 2015
  25. Apr 08, 2015
    • AnHardt's avatar
      Moved the definitions of the LCD_STR_* to Conditionals.h · ea897654
      AnHardt authored
      to avoid errors in Marlin_main.cpp. #1860
      
      In the include tree of Marlin_main.cpp the decision between the display types is not made.
      To include the right LCD_STR_* ether 'dogm_lcd_implementation.h' or 'ultralcd_implementation_hitachi_HD44780.h' with all their code.
      A 'dogm_lcd_implementation.h.h' would be a curiosity.
      So i moved both of the definition blocks to conditionals.h
      
      On the long term it could make sense to use the same numbering for the u8glib and the hitachi symbols.
      ea897654
    • AnHardt's avatar
      Aplied HAS_LCD_CONTRAST also to Marlin_main.cpp · 6a514f3d
      AnHardt authored
      and cleaned typo.
      6a514f3d
    • AnHardt's avatar
      Remove Contrast Menu for U8GLIB_ST7920 · bcc04192
      AnHardt authored
      The other two devices we use in u8glib have more than only dummy code.
      Checked this in the library code.
      bcc04192
  26. Apr 04, 2015
Loading