diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2017-10-10 11:12:15 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2018-02-11 14:13:12 -0500 |
commit | 08a1183a01ab84484e284e4f8dbb9427a5b614cf (patch) | |
tree | 1c43501656538334672267e5810bf4ebd05074c3 /config | |
parent | f77e1b67f64604ef48f4239b6db9c2fcc1ead0c5 (diff) | |
download | kutter-08a1183a01ab84484e284e4f8dbb9427a5b614cf.tar.gz kutter-08a1183a01ab84484e284e4f8dbb9427a5b614cf.tar.xz kutter-08a1183a01ab84484e284e4f8dbb9427a5b614cf.zip |
virtual_sdcard: Initial support for virtual sdcard
Add support for directly printing from a local file on the host. This
may be useful if the host cpu is not fast enough to run OctoPrint
well.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'config')
-rw-r--r-- | config/example-extras.cfg | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/config/example-extras.cfg b/config/example-extras.cfg index 787a4a29..32221e2c 100644 --- a/config/example-extras.cfg +++ b/config/example-extras.cfg @@ -303,6 +303,19 @@ # that axis. The default is to not force a position for the axis. +# A virtual sdcard may be useful if the host machine is not fast +# enough to run OctoPrint well. It allows the Klipper host software to +# directly print gcode files stored in a directory on the host using +# standard sdcard G-Code commands (eg, M24). +#[virtual_sdcard] +#path: ~/.octoprint/uploads/ +# The path of the local directory on the host machine to look for +# g-code files. This is a read-only directory (sdcard file writes +# are not supported). One may point this to OctoPrint's upload +# directory (generally ~/.octoprint/uploads/ ). This parameter must +# be provided. + + # Replicape support - see the generic-replicape.cfg file for further # details. #[replicape] |