diff --git a/config.default.h b/config.default.h index 38718a9..125b9ed 100644 --- a/config.default.h +++ b/config.default.h @@ -302,20 +302,18 @@ DEFINE_TEMP_SENSOR(bed, TT_THERMISTOR, 1, THERMISTOR_EXTRUDER) /***************************************************************************\ * * -* Define your heaters here * +* Define your heaters here. * * * -* If your heater isn't on a PWM-able pin, set heater_pwm to zero and we'll * -* use bang-bang output. Note that PID will still be used * -* * -* See Appendix 8 at the end of this file for PWMable pin mappings * -* * -* If a heater isn't attached to a temperature sensor above, it can still be * -* controlled by host but otherwise is ignored by firmware * +* Currently, heaters work on PWM-able pins, only. See the end of this file * +* for PWM-able pin mappings. * * * * To attach a heater to a temp sensor above, simply use exactly the same * -* name - copy+paste is your friend * -* * -* Some common names are 'extruder', 'bed', 'fan', 'motor' * +* name - copy+paste is your friend. Some common names are 'extruder', * +* 'bed', 'fan', 'motor', ... names with special meaning can be found * +* in gcode_process.c. Currently, these are: * +* HEATER_extruder (M104) * +* HEATER_bed (M140) * +* HEATER_fan (M106/M107) * * * * A milling spindle can also be defined as a heater. Attach it to a * * temperature sensor of TT_NONE, then you can control the spindle's rpm * diff --git a/config.gen3.h b/config.gen3.h index bbfd8b8..fcf44ba 100644 --- a/config.gen3.h +++ b/config.gen3.h @@ -307,23 +307,18 @@ DEFINE_TEMP_SENSOR(bed, TT_INTERCOM, 1, 0) /***************************************************************************\ * * -* Define your heaters here * +* Define your heaters here. * * * -* \WARNING For GEN3, ONLY DEFINE HEATERS CONNECTED TO YOUR MOTHERBOARD HERE * -* Heaters connected to your extruder controller belong in extruder/config.h * -* * -* If your heater isn't on a PWM-able pin, set heater_pwm to zero and we'll * -* use bang-bang output. Note that PID will still be used * -* * -* See Appendix 8 at the end of this file for PWMable pin mappings * -* * -* If a heater isn't attached to a temperature sensor above, it can still be * -* controlled by host but otherwise is ignored by firmware * +* Currently, heaters work on PWM-able pins, only. See the end of this file * +* for PWM-able pin mappings. * * * * To attach a heater to a temp sensor above, simply use exactly the same * -* name - copy+paste is your friend * -* * -* Some common names are 'extruder', 'bed', 'fan', 'motor' * +* name - copy+paste is your friend. Some common names are 'extruder', * +* 'bed', 'fan', 'motor', ... names with special meaning can be found * +* in gcode_process.c. Currently, these are: * +* HEATER_extruder (M104) * +* HEATER_bed (M140) * +* HEATER_fan (M106/M107) * * * * A milling spindle can also be defined as a heater. Attach it to a * * temperature sensor of TT_NONE, then you can control the spindle's rpm * diff --git a/config.gen6.h b/config.gen6.h index f6843c4..e6b82b0 100644 --- a/config.gen6.h +++ b/config.gen6.h @@ -298,20 +298,18 @@ DEFINE_TEMP_SENSOR(extruder, TT_THERMISTOR, PINA5, THERMISTOR_EXTRUDER) /***************************************************************************\ * * -* Define your heaters here * +* Define your heaters here. * * * -* If your heater isn't on a PWM-able pin, set heater_pwm to zero and we'll * -* use bang-bang output. Note that PID will still be used * -* * -* See Appendix 8 at the end of this file for PWMable pin mappings * -* * -* If a heater isn't attached to a temperature sensor above, it can still be * -* controlled by host but otherwise is ignored by firmware * +* Currently, heaters work on PWM-able pins, only. See the end of this file * +* for PWM-able pin mappings. * * * * To attach a heater to a temp sensor above, simply use exactly the same * -* name - copy+paste is your friend * -* * -* Some common names are 'extruder', 'bed', 'fan', 'motor' * +* name - copy+paste is your friend. Some common names are 'extruder', * +* 'bed', 'fan', 'motor', ... names with special meaning can be found * +* in gcode_process.c. Currently, these are: * +* HEATER_extruder (M104) * +* HEATER_bed (M140) * +* HEATER_fan (M106/M107) * * * * A milling spindle can also be defined as a heater. Attach it to a * * temperature sensor of TT_NONE, then you can control the spindle's rpm * diff --git a/config.gen7-v1.1-v1.3.h b/config.gen7-v1.1-v1.3.h index 60ba168..11ce1af 100644 --- a/config.gen7-v1.1-v1.3.h +++ b/config.gen7-v1.1-v1.3.h @@ -307,20 +307,18 @@ DEFINE_TEMP_SENSOR(bed, TT_THERMISTOR, PINA2, THERMISTOR_BED) /***************************************************************************\ * * -* Define your heaters here * +* Define your heaters here. * * * -* If your heater isn't on a PWM-able pin, set heater_pwm to zero and we'll * -* use bang-bang output. Note that PID will still be used * -* * -* See Appendix 8 at the end of this file for PWMable pin mappings * -* * -* If a heater isn't attached to a temperature sensor above, it can still be * -* controlled by host but otherwise is ignored by firmware * +* Currently, heaters work on PWM-able pins, only. See the end of this file * +* for PWM-able pin mappings. * * * * To attach a heater to a temp sensor above, simply use exactly the same * -* name - copy+paste is your friend * -* * -* Some common names are 'extruder', 'bed', 'fan', 'motor' * +* name - copy+paste is your friend. Some common names are 'extruder', * +* 'bed', 'fan', 'motor', ... names with special meaning can be found * +* in gcode_process.c. Currently, these are: * +* HEATER_extruder (M104) * +* HEATER_bed (M140) * +* HEATER_fan (M106/M107) * * * * A milling spindle can also be defined as a heater. Attach it to a * * temperature sensor of TT_NONE, then you can control the spindle's rpm * diff --git a/config.gen7-v1.4.h b/config.gen7-v1.4.h index 0fa777c..539da23 100644 --- a/config.gen7-v1.4.h +++ b/config.gen7-v1.4.h @@ -307,20 +307,18 @@ DEFINE_TEMP_SENSOR(bed, TT_THERMISTOR, PINA1, THERMISTOR_BED) /***************************************************************************\ * * -* Define your heaters here * +* Define your heaters here. * * * -* If your heater isn't on a PWM-able pin, set heater_pwm to zero and we'll * -* use bang-bang output. Note that PID will still be used * -* * -* See Appendix 8 at the end of this file for PWMable pin mappings * -* * -* If a heater isn't attached to a temperature sensor above, it can still be * -* controlled by host but otherwise is ignored by firmware * +* Currently, heaters work on PWM-able pins, only. See the end of this file * +* for PWM-able pin mappings. * * * * To attach a heater to a temp sensor above, simply use exactly the same * -* name - copy+paste is your friend * -* * -* Some common names are 'extruder', 'bed', 'fan', 'motor' * +* name - copy+paste is your friend. Some common names are 'extruder', * +* 'bed', 'fan', 'motor', ... names with special meaning can be found * +* in gcode_process.c. Currently, these are: * +* HEATER_extruder (M104) * +* HEATER_bed (M140) * +* HEATER_fan (M106/M107) * * * * A milling spindle can also be defined as a heater. Attach it to a * * temperature sensor of TT_NONE, then you can control the spindle's rpm * diff --git a/config.ramps-v1.2.h b/config.ramps-v1.2.h index a29d07e..abacf1c 100644 --- a/config.ramps-v1.2.h +++ b/config.ramps-v1.2.h @@ -302,20 +302,18 @@ DEFINE_TEMP_SENSOR(bed, TT_THERMISTOR, AIO1_PIN, THERMISTOR_EXTRUDER) /***************************************************************************\ * * -* Define your heaters here * +* Define your heaters here. * * * -* If your heater isn't on a PWM-able pin, set heater_pwm to zero and we'll * -* use bang-bang output. Note that PID will still be used * -* * -* See Appendix 8 at the end of this file for PWMable pin mappings * -* * -* If a heater isn't attached to a temperature sensor above, it can still be * -* controlled by host but otherwise is ignored by firmware * +* Currently, heaters work on PWM-able pins, only. See the end of this file * +* for PWM-able pin mappings. * * * * To attach a heater to a temp sensor above, simply use exactly the same * -* name - copy+paste is your friend * -* * -* Some common names are 'extruder', 'bed', 'fan', 'motor' * +* name - copy+paste is your friend. Some common names are 'extruder', * +* 'bed', 'fan', 'motor', ... names with special meaning can be found * +* in gcode_process.c. Currently, these are: * +* HEATER_extruder (M104) * +* HEATER_bed (M140) * +* HEATER_fan (M106/M107) * * * * A milling spindle can also be defined as a heater. Attach it to a * * temperature sensor of TT_NONE, then you can control the spindle's rpm * diff --git a/config.ramps-v1.3.h b/config.ramps-v1.3.h index beffe0e..595e847 100644 --- a/config.ramps-v1.3.h +++ b/config.ramps-v1.3.h @@ -306,20 +306,18 @@ DEFINE_TEMP_SENSOR(extruder, TT_THERMISTOR, AIO13_PIN, THERMISTOR_EXTRUDER) /***************************************************************************\ * * -* Define your heaters here * +* Define your heaters here. * * * -* If your heater isn't on a PWM-able pin, set heater_pwm to zero and we'll * -* use bang-bang output. Note that PID will still be used * -* * -* See Appendix 8 at the end of this file for PWMable pin mappings * -* * -* If a heater isn't attached to a temperature sensor above, it can still be * -* controlled by host but otherwise is ignored by firmware * +* Currently, heaters work on PWM-able pins, only. See the end of this file * +* for PWM-able pin mappings. * * * * To attach a heater to a temp sensor above, simply use exactly the same * -* name - copy+paste is your friend * -* * -* Some common names are 'extruder', 'bed', 'fan', 'motor' * +* name - copy+paste is your friend. Some common names are 'extruder', * +* 'bed', 'fan', 'motor', ... names with special meaning can be found * +* in gcode_process.c. Currently, these are: * +* HEATER_extruder (M104) * +* HEATER_bed (M140) * +* HEATER_fan (M106/M107) * * * * A milling spindle can also be defined as a heater. Attach it to a * * temperature sensor of TT_NONE, then you can control the spindle's rpm * diff --git a/config.sanguinololu-v1.1.h b/config.sanguinololu-v1.1.h index 9084e76..183dbe3 100644 --- a/config.sanguinololu-v1.1.h +++ b/config.sanguinololu-v1.1.h @@ -303,20 +303,18 @@ DEFINE_TEMP_SENSOR(bed, TT_THERMISTOR, AIO6_PIN, THERMISTOR_EXTRUDER) /***************************************************************************\ * * -* Define your heaters here * +* Define your heaters here. * * * -* If your heater isn't on a PWM-able pin, set heater_pwm to zero and we'll * -* use bang-bang output. Note that PID will still be used * -* * -* See Appendix 8 at the end of this file for PWMable pin mappings * -* * -* If a heater isn't attached to a temperature sensor above, it can still be * -* controlled by host but otherwise is ignored by firmware * +* Currently, heaters work on PWM-able pins, only. See the end of this file * +* for PWM-able pin mappings. * * * * To attach a heater to a temp sensor above, simply use exactly the same * -* name - copy+paste is your friend * -* * -* Some common names are 'extruder', 'bed', 'fan', 'motor' * +* name - copy+paste is your friend. Some common names are 'extruder', * +* 'bed', 'fan', 'motor', ... names with special meaning can be found * +* in gcode_process.c. Currently, these are: * +* HEATER_extruder (M104) * +* HEATER_bed (M140) * +* HEATER_fan (M106/M107) * * * * A milling spindle can also be defined as a heater. Attach it to a * * temperature sensor of TT_NONE, then you can control the spindle's rpm * diff --git a/config.sanguinololu-v1.2.h b/config.sanguinololu-v1.2.h index a39517a..45f2f4b 100644 --- a/config.sanguinololu-v1.2.h +++ b/config.sanguinololu-v1.2.h @@ -303,20 +303,18 @@ DEFINE_TEMP_SENSOR(bed, TT_THERMISTOR, AIO6_PIN, THERMISTOR_BED) /***************************************************************************\ * * -* Define your heaters here * +* Define your heaters here. * * * -* If your heater isn't on a PWM-able pin, set heater_pwm to zero and we'll * -* use bang-bang output. Note that PID will still be used * -* * -* See Appendix 8 at the end of this file for PWMable pin mappings * -* * -* If a heater isn't attached to a temperature sensor above, it can still be * -* controlled by host but otherwise is ignored by firmware * +* Currently, heaters work on PWM-able pins, only. See the end of this file * +* for PWM-able pin mappings. * * * * To attach a heater to a temp sensor above, simply use exactly the same * -* name - copy+paste is your friend * -* * -* Some common names are 'extruder', 'bed', 'fan', 'motor' * +* name - copy+paste is your friend. Some common names are 'extruder', * +* 'bed', 'fan', 'motor', ... names with special meaning can be found * +* in gcode_process.c. Currently, these are: * +* HEATER_extruder (M104) * +* HEATER_bed (M140) * +* HEATER_fan (M106/M107) * * * * A milling spindle can also be defined as a heater. Attach it to a * * temperature sensor of TT_NONE, then you can control the spindle's rpm *