Parcourir la source

Fix documentation of heating sanity check

Scott Lahteine il y a 10 ans
Parent
révision
79106638a8

+ 8
- 5
Marlin/Configuration_adv.h Voir le fichier

@@ -14,11 +14,14 @@
14 14
 #endif
15 15
 #define BED_CHECK_INTERVAL 5000 //ms between checks in bang-bang control
16 16
 
17
-//// Heating sanity check:
18
-// This waits for the watch period in milliseconds whenever an M104 or M109 increases the target temperature
19
-// If the temperature has not increased at the end of that period, the target temperature is set to zero.
20
-// It can be reset with another M104/M109. This check is also only triggered if the target temperature and
21
-// the current temperature differ by at least 2x WATCH_TEMP_INCREASE
17
+/**
18
+ * Heating Sanity Check
19
+ *
20
+ * Whenever an M104 or M109 increases the target temperature this will wait for WATCH_TEMP_PERIOD milliseconds,
21
+ * and if the temperature hasn't increased by WATCH_TEMP_INCREASE degrees, the machine is halted, requiring a
22
+ * hard reset. This test restarts with any M104/M109, but only if the current temperature is below the target
23
+ * by at least 2 * WATCH_TEMP_INCREASE degrees celsius.
24
+ */
22 25
 #define WATCH_TEMP_PERIOD 16000 // 16 seconds
23 26
 #define WATCH_TEMP_INCREASE 4  // Heat up at least 4 degrees in 16 seconds
24 27
 

+ 8
- 5
Marlin/configurator/config/Configuration_adv.h Voir le fichier

@@ -14,11 +14,14 @@
14 14
 #endif
15 15
 #define BED_CHECK_INTERVAL 5000 //ms between checks in bang-bang control
16 16
 
17
-//// Heating sanity check:
18
-// This waits for the watch period in milliseconds whenever an M104 or M109 increases the target temperature
19
-// If the temperature has not increased at the end of that period, the target temperature is set to zero.
20
-// It can be reset with another M104/M109. This check is also only triggered if the target temperature and
21
-// the current temperature differ by at least 2x WATCH_TEMP_INCREASE
17
+/**
18
+ * Heating Sanity Check
19
+ *
20
+ * Whenever an M104 or M109 increases the target temperature this will wait for WATCH_TEMP_PERIOD milliseconds,
21
+ * and if the temperature hasn't increased by WATCH_TEMP_INCREASE degrees, the machine is halted, requiring a
22
+ * hard reset. This test restarts with any M104/M109, but only if the current temperature is below the target
23
+ * by at least 2 * WATCH_TEMP_INCREASE degrees celsius.
24
+ */
22 25
 #define WATCH_TEMP_PERIOD 16000 // 16 seconds
23 26
 #define WATCH_TEMP_INCREASE 4  // Heat up at least 4 degrees in 16 seconds
24 27
 

+ 8
- 5
Marlin/example_configurations/Felix/Configuration_adv.h Voir le fichier

@@ -14,11 +14,14 @@
14 14
 #endif
15 15
 #define BED_CHECK_INTERVAL 5000 //ms between checks in bang-bang control
16 16
 
17
-//// Heating sanity check:
18
-// This waits for the watch period in milliseconds whenever an M104 or M109 increases the target temperature
19
-// If the temperature has not increased at the end of that period, the target temperature is set to zero.
20
-// It can be reset with another M104/M109. This check is also only triggered if the target temperature and
21
-// the current temperature differ by at least 2x WATCH_TEMP_INCREASE
17
+/**
18
+ * Heating Sanity Check
19
+ *
20
+ * Whenever an M104 or M109 increases the target temperature this will wait for WATCH_TEMP_PERIOD milliseconds,
21
+ * and if the temperature hasn't increased by WATCH_TEMP_INCREASE degrees, the machine is halted, requiring a
22
+ * hard reset. This test restarts with any M104/M109, but only if the current temperature is below the target
23
+ * by at least 2 * WATCH_TEMP_INCREASE degrees celsius.
24
+ */
22 25
 #define WATCH_TEMP_PERIOD 16000 // 16 seconds
23 26
 #define WATCH_TEMP_INCREASE 4  // Heat up at least 4 degrees in 16 seconds
24 27
 

+ 8
- 5
Marlin/example_configurations/Hephestos/Configuration_adv.h Voir le fichier

@@ -14,11 +14,14 @@
14 14
 #endif
15 15
 #define BED_CHECK_INTERVAL 5000 //ms between checks in bang-bang control
16 16
 
17
-//// Heating sanity check:
18
-// This waits for the watch period in milliseconds whenever an M104 or M109 increases the target temperature
19
-// If the temperature has not increased at the end of that period, the target temperature is set to zero.
20
-// It can be reset with another M104/M109. This check is also only triggered if the target temperature and
21
-// the current temperature differ by at least 2x WATCH_TEMP_INCREASE
17
+/**
18
+ * Heating Sanity Check
19
+ *
20
+ * Whenever an M104 or M109 increases the target temperature this will wait for WATCH_TEMP_PERIOD milliseconds,
21
+ * and if the temperature hasn't increased by WATCH_TEMP_INCREASE degrees, the machine is halted, requiring a
22
+ * hard reset. This test restarts with any M104/M109, but only if the current temperature is below the target
23
+ * by at least 2 * WATCH_TEMP_INCREASE degrees celsius.
24
+ */
22 25
 #define WATCH_TEMP_PERIOD 16000 // 16 seconds
23 26
 #define WATCH_TEMP_INCREASE 4  // Heat up at least 4 degrees in 16 seconds
24 27
 

+ 8
- 5
Marlin/example_configurations/K8200/Configuration_adv.h Voir le fichier

@@ -14,11 +14,14 @@
14 14
 #endif
15 15
 #define BED_CHECK_INTERVAL 5000 //ms between checks in bang-bang control
16 16
 
17
-//// Heating sanity check:
18
-// This waits for the watch period in milliseconds whenever an M104 or M109 increases the target temperature
19
-// If the temperature has not increased at the end of that period, the target temperature is set to zero.
20
-// It can be reset with another M104/M109. This check is also only triggered if the target temperature and
21
-// the current temperature differ by at least 2x WATCH_TEMP_INCREASE
17
+/**
18
+ * Heating Sanity Check
19
+ *
20
+ * Whenever an M104 or M109 increases the target temperature this will wait for WATCH_TEMP_PERIOD milliseconds,
21
+ * and if the temperature hasn't increased by WATCH_TEMP_INCREASE degrees, the machine is halted, requiring a
22
+ * hard reset. This test restarts with any M104/M109, but only if the current temperature is below the target
23
+ * by at least 2 * WATCH_TEMP_INCREASE degrees celsius.
24
+ */
22 25
 #define WATCH_TEMP_PERIOD 16000 // 16 seconds
23 26
 #define WATCH_TEMP_INCREASE 4  // Heat up at least 4 degrees in 16 seconds
24 27
 

+ 8
- 5
Marlin/example_configurations/SCARA/Configuration_adv.h Voir le fichier

@@ -14,11 +14,14 @@
14 14
 #endif
15 15
 #define BED_CHECK_INTERVAL 3000 //ms between checks in bang-bang control
16 16
 
17
-//// Heating sanity check:
18
-// This waits for the watch period in milliseconds whenever an M104 or M109 increases the target temperature
19
-// If the temperature has not increased at the end of that period, the target temperature is set to zero.
20
-// It can be reset with another M104/M109. This check is also only triggered if the target temperature and
21
-// the current temperature differ by at least 2x WATCH_TEMP_INCREASE
17
+/**
18
+ * Heating Sanity Check
19
+ *
20
+ * Whenever an M104 or M109 increases the target temperature this will wait for WATCH_TEMP_PERIOD milliseconds,
21
+ * and if the temperature hasn't increased by WATCH_TEMP_INCREASE degrees, the machine is halted, requiring a
22
+ * hard reset. This test restarts with any M104/M109, but only if the current temperature is below the target
23
+ * by at least 2 * WATCH_TEMP_INCREASE degrees celsius.
24
+ */
22 25
 #define WATCH_TEMP_PERIOD 16000 // 16 seconds
23 26
 #define WATCH_TEMP_INCREASE 4  // Heat up at least 4 degrees in 16 seconds
24 27
 

+ 8
- 5
Marlin/example_configurations/WITBOX/Configuration_adv.h Voir le fichier

@@ -14,11 +14,14 @@
14 14
 #endif
15 15
 #define BED_CHECK_INTERVAL 5000 //ms between checks in bang-bang control
16 16
 
17
-//// Heating sanity check:
18
-// This waits for the watch period in milliseconds whenever an M104 or M109 increases the target temperature
19
-// If the temperature has not increased at the end of that period, the target temperature is set to zero.
20
-// It can be reset with another M104/M109. This check is also only triggered if the target temperature and
21
-// the current temperature differ by at least 2x WATCH_TEMP_INCREASE
17
+/**
18
+ * Heating Sanity Check
19
+ *
20
+ * Whenever an M104 or M109 increases the target temperature this will wait for WATCH_TEMP_PERIOD milliseconds,
21
+ * and if the temperature hasn't increased by WATCH_TEMP_INCREASE degrees, the machine is halted, requiring a
22
+ * hard reset. This test restarts with any M104/M109, but only if the current temperature is below the target
23
+ * by at least 2 * WATCH_TEMP_INCREASE degrees celsius.
24
+ */
22 25
 #define WATCH_TEMP_PERIOD 16000 // 16 seconds
23 26
 #define WATCH_TEMP_INCREASE 4  // Heat up at least 4 degrees in 16 seconds
24 27
 

+ 8
- 5
Marlin/example_configurations/delta/biv2.5/Configuration_adv.h Voir le fichier

@@ -14,11 +14,14 @@
14 14
 #endif
15 15
 #define BED_CHECK_INTERVAL 5000 //ms between checks in bang-bang control
16 16
 
17
-//// Heating sanity check:
18
-// This waits for the watch period in milliseconds whenever an M104 or M109 increases the target temperature
19
-// If the temperature has not increased at the end of that period, the target temperature is set to zero.
20
-// It can be reset with another M104/M109. This check is also only triggered if the target temperature and
21
-// the current temperature differ by at least 2x WATCH_TEMP_INCREASE
17
+/**
18
+ * Heating Sanity Check
19
+ *
20
+ * Whenever an M104 or M109 increases the target temperature this will wait for WATCH_TEMP_PERIOD milliseconds,
21
+ * and if the temperature hasn't increased by WATCH_TEMP_INCREASE degrees, the machine is halted, requiring a
22
+ * hard reset. This test restarts with any M104/M109, but only if the current temperature is below the target
23
+ * by at least 2 * WATCH_TEMP_INCREASE degrees celsius.
24
+ */
22 25
 #define WATCH_TEMP_PERIOD 16000 // 16 seconds
23 26
 #define WATCH_TEMP_INCREASE 4  // Heat up at least 4 degrees in 16 seconds
24 27
 

+ 8
- 5
Marlin/example_configurations/delta/generic/Configuration_adv.h Voir le fichier

@@ -14,11 +14,14 @@
14 14
 #endif
15 15
 #define BED_CHECK_INTERVAL 5000 //ms between checks in bang-bang control
16 16
 
17
-//// Heating sanity check:
18
-// This waits for the watch period in milliseconds whenever an M104 or M109 increases the target temperature
19
-// If the temperature has not increased at the end of that period, the target temperature is set to zero.
20
-// It can be reset with another M104/M109. This check is also only triggered if the target temperature and
21
-// the current temperature differ by at least 2x WATCH_TEMP_INCREASE
17
+/**
18
+ * Heating Sanity Check
19
+ *
20
+ * Whenever an M104 or M109 increases the target temperature this will wait for WATCH_TEMP_PERIOD milliseconds,
21
+ * and if the temperature hasn't increased by WATCH_TEMP_INCREASE degrees, the machine is halted, requiring a
22
+ * hard reset. This test restarts with any M104/M109, but only if the current temperature is below the target
23
+ * by at least 2 * WATCH_TEMP_INCREASE degrees celsius.
24
+ */
22 25
 #define WATCH_TEMP_PERIOD 16000 // 16 seconds
23 26
 #define WATCH_TEMP_INCREASE 4  // Heat up at least 4 degrees in 16 seconds
24 27
 

+ 8
- 5
Marlin/example_configurations/delta/kossel_mini/Configuration_adv.h Voir le fichier

@@ -14,11 +14,14 @@
14 14
 #endif
15 15
 #define BED_CHECK_INTERVAL 5000 //ms between checks in bang-bang control
16 16
 
17
-//// Heating sanity check:
18
-// This waits for the watch period in milliseconds whenever an M104 or M109 increases the target temperature
19
-// If the temperature has not increased at the end of that period, the target temperature is set to zero.
20
-// It can be reset with another M104/M109. This check is also only triggered if the target temperature and
21
-// the current temperature differ by at least 2x WATCH_TEMP_INCREASE
17
+/**
18
+ * Heating Sanity Check
19
+ *
20
+ * Whenever an M104 or M109 increases the target temperature this will wait for WATCH_TEMP_PERIOD milliseconds,
21
+ * and if the temperature hasn't increased by WATCH_TEMP_INCREASE degrees, the machine is halted, requiring a
22
+ * hard reset. This test restarts with any M104/M109, but only if the current temperature is below the target
23
+ * by at least 2 * WATCH_TEMP_INCREASE degrees celsius.
24
+ */
22 25
 #define WATCH_TEMP_PERIOD 16000 // 16 seconds
23 26
 #define WATCH_TEMP_INCREASE 4  // Heat up at least 4 degrees in 16 seconds
24 27
 

+ 8
- 5
Marlin/example_configurations/makibox/Configuration_adv.h Voir le fichier

@@ -14,11 +14,14 @@
14 14
 #endif
15 15
 #define BED_CHECK_INTERVAL 5000 //ms between checks in bang-bang control
16 16
 
17
-//// Heating sanity check:
18
-// This waits for the watch period in milliseconds whenever an M104 or M109 increases the target temperature
19
-// If the temperature has not increased at the end of that period, the target temperature is set to zero.
20
-// It can be reset with another M104/M109. This check is also only triggered if the target temperature and
21
-// the current temperature differ by at least 2x WATCH_TEMP_INCREASE
17
+/**
18
+ * Heating Sanity Check
19
+ *
20
+ * Whenever an M104 or M109 increases the target temperature this will wait for WATCH_TEMP_PERIOD milliseconds,
21
+ * and if the temperature hasn't increased by WATCH_TEMP_INCREASE degrees, the machine is halted, requiring a
22
+ * hard reset. This test restarts with any M104/M109, but only if the current temperature is below the target
23
+ * by at least 2 * WATCH_TEMP_INCREASE degrees celsius.
24
+ */
22 25
 #define WATCH_TEMP_PERIOD 16000 // 16 seconds
23 26
 #define WATCH_TEMP_INCREASE 4  // Heat up at least 4 degrees in 16 seconds
24 27
 

+ 8
- 5
Marlin/example_configurations/tvrrug/Round2/Configuration_adv.h Voir le fichier

@@ -14,11 +14,14 @@
14 14
 #endif
15 15
 #define BED_CHECK_INTERVAL 5000 //ms between checks in bang-bang control
16 16
 
17
-//// Heating sanity check:
18
-// This waits for the watch period in milliseconds whenever an M104 or M109 increases the target temperature
19
-// If the temperature has not increased at the end of that period, the target temperature is set to zero.
20
-// It can be reset with another M104/M109. This check is also only triggered if the target temperature and
21
-// the current temperature differ by at least 2x WATCH_TEMP_INCREASE
17
+/**
18
+ * Heating Sanity Check
19
+ *
20
+ * Whenever an M104 or M109 increases the target temperature this will wait for WATCH_TEMP_PERIOD milliseconds,
21
+ * and if the temperature hasn't increased by WATCH_TEMP_INCREASE degrees, the machine is halted, requiring a
22
+ * hard reset. This test restarts with any M104/M109, but only if the current temperature is below the target
23
+ * by at least 2 * WATCH_TEMP_INCREASE degrees celsius.
24
+ */
22 25
 #define WATCH_TEMP_PERIOD 16000 // 16 seconds
23 26
 #define WATCH_TEMP_INCREASE 4  // Heat up at least 4 degrees in 16 seconds
24 27
 

Chargement…
Annuler
Enregistrer