aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2021-04-28 20:40:24 -0400
committerKevin O'Connor <kevin@koconnor.net>2021-04-28 20:40:24 -0400
commite77bf7431e05156a87748afc3ea1d823921de686 (patch)
tree68d90036c353092da3b55ed3f7b978450be9cfde
parentebbb21be0027f2c5131033c5eff7d0dbea8b03b0 (diff)
downloadkutter-e77bf7431e05156a87748afc3ea1d823921de686.tar.gz
kutter-e77bf7431e05156a87748afc3ea1d823921de686.tar.xz
kutter-e77bf7431e05156a87748afc3ea1d823921de686.zip
docs: Move palette2 location in Config_Reference.md
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
-rw-r--r--docs/Config_Reference.md72
1 files changed, 36 insertions, 36 deletions
diff --git a/docs/Config_Reference.md b/docs/Config_Reference.md
index 14377202..708b1bec 100644
--- a/docs/Config_Reference.md
+++ b/docs/Config_Reference.md
@@ -3837,6 +3837,42 @@ host_mcu:
# (True sets CFG5 high, False sets it low). The default is True.
```
+# Other Custom Modules
+
+## [palette2]
+
+Palette 2 multimaterial support - provides a tighter integration
+supporting Palette 2 devices in connected mode.
+
+This modules also requires `[virtual_sdcard]` and `[pause_resume]`
+for full functionality.
+
+If you use this module, do not use the Palette 2 plugin for
+Octoprint as they will conflict, and 1 will fail to initialize
+properly likely aborting your print.
+
+If you use Octoprint and stream gcode over the serial port instead of
+printing from virtual_sd, then remo **M1** and **M0** from *Pausing commands*
+in *Settings > Serial Connection > Firmware & protocol* will prevent
+the need to start print on the Palette 2 and unpausing in Octoprint
+for your print to begin.
+
+```
+[palette2]
+serial:
+# The serial port to connect to the Palette 2.
+#baud: 115200
+# The baud rate to use. The default is 115200.
+#feedrate_splice: 0.8
+# The feedrate to use when splicing, default is 0.8
+#feedrate_normal: 1.0
+# The feedrate to use after splicing, default is 1.0
+#auto_load_speed: 2
+# Extrude feedrate when autoloading, default is 2 (mm/s)
+#auto_cancel_variation: 0.1
+# Auto cancel print when ping varation is above this threshold
+```
+
# Common bus parameters
## Common SPI settings
@@ -3882,39 +3918,3 @@ I2C bus.
# On some micro-controllers changing this value has no effect. The
# default is 100000.
```
-
-# Other Custom Modules
-
-## [palette2]
-
-Palette 2 multimaterial support - provides a tighter integration
-supporting Palette 2 devices in connected mode.
-
-This modules also requires `[virtual_sdcard]` and `[pause_resume]`
-for full functionality.
-
-If you use this module, do not use the Palette 2 plugin for
-Octoprint as they will conflict, and 1 will fail to initialize
-properly likely aborting your print.
-
-If you use Octoprint and stream gcode over the serial port instead of
-printing from virtual_sd, then remo **M1** and **M0** from *Pausing commands*
-in *Settings > Serial Connection > Firmware & protocol* will prevent
-the need to start print on the Palette 2 and unpausing in Octoprint
-for your print to begin.
-
-```
-[palette2]
-serial:
-# The serial port to connect to the Palette 2.
-#baud: 115200
-# The baud rate to use. The default is 115200.
-#feedrate_splice: 0.8
-# The feedrate to use when splicing, default is 0.8
-#feedrate_normal: 1.0
-# The feedrate to use after splicing, default is 1.0
-#auto_load_speed: 2
-# Extrude feedrate when autoloading, default is 2 (mm/s)
-#auto_cancel_variation: 0.1
-# Auto cancel print when ping varation is above this threshold
-```