From b3d2307d36a7e8c72b283309bd25617a9dd36759 Mon Sep 17 00:00:00 2001 From: Eric Callahan Date: Wed, 24 Nov 2021 08:59:41 -0500 Subject: [PATCH] docs: document object processing Signed-off-by: Eric Callahan --- docs/configuration.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/docs/configuration.md b/docs/configuration.md index 520369a..7434964 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -66,8 +66,20 @@ log_path: queue_gcode_uploads: False # When set to True the file manager will add uploads to the job_queue when # the `start_print` flag has been set. The default if False. +enable_object_processing: False +# When set to True gcode files will be run through a "preprocessor" +# during metdata extraction if object tags are detected. This preprocessor +# replaces object tags with G-Code commands compatible with Klipper's +# "cancel object" functionality. Note that this process is file I/O intensive, +# it is not recommended for usage on low resource SBCs such as a Pi Zero. +# The default is False. ``` +!!! Note + It is also possible to enable object processing directly in the slicer. + See the [preprocess-cancellation](https://github.com/kageurufu/cancelobject-preprocessor) + documentation for details. + ### `[database]` The `database` section provides configuration for Moonraker's lmdb database.