aboutsummaryrefslogtreecommitdiffstats
path: root/config/generic-mini-rambo.cfg
Commit message (Collapse)AuthorAgeFilesLines
* output_pin: Deprecate static_value parameterKevin O'Connor2024-01-231-3/+3
| | | | | | | | | | | | Remove support for configuring "static" pins in output_pin module. A "static" pin only saves a few bytes of memory in the micro-controller. The savings does not justify the increased code complexity. Deprecate the static_value parameter to warn users. In the interim, a static_value parameter will set both value and shutdown_value parameters. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* config: Change of alias for heater_fan in multiple configs (#5632)JamesH19782022-07-191-1/+1
| | | | | This PR serves to fix a longstanding misnomer in some config files. Many configs state a nozzle_cooling_fan alias for what is usually a "hotend cooling fan". This causes ambiguity and confusion with the parts fan. I have identified all 24 files with this and changed them here. Signed-off-by: James Hartley <james@hartleyns.com>
* config: Update example configs to use rotation_distanceKevin O'Connor2020-12-181-4/+8
| | | | Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* docs: Move config reference information to new Config_Reference.mdKevin O'Connor2020-11-181-1/+1
| | | | | | | Move all the config reference information from files in the config/ directory to a new Config_Reference.md document. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* config: Use fastest PWM time in mini-rambo PWM DAC configKevin O'Connor2018-09-111-3/+3
| | | | Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* output_pin: Move pwm and digital output pins to new module in extras/Kevin O'Connor2018-03-171-6/+9
| | | | | | | | Rename the digital_output, pwm_output, and static_pwm_output config sections to output_pin and move to a new module in the extras/ directory. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* config: Use .0025 as the default z step_distance in sample configsKevin O'Connor2018-02-251-1/+1
| | | | | | | | | | Don't use tiny step distances on the Z as that could cause a surprise to users that copy the config without updating all the settings. (A Z step distance that is too small would cause a high motor velocity.) A step distance of .0025 is very popular in practice, so change the default example configs to use that. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* fan: Clarify hardware_pwm and allow cycle_time to be set on software pwmKevin O'Connor2018-01-291-3/+6
| | | | | | | | Specify hardware pwm cycle times using the same method as software pwm (in seconds, not clock ticks). Allow the fan code to be configured with an explicit cycle time even when using software pwm. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
* config: Add example generic-mini-rambo.cfg config fileKevin O'Connor2018-01-171-0/+103
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>