Welcome to mirror list, hosted at ThFree Co, Russian Federation.

M017.md « _gcode - github.com/MarlinFirmware/MarlinDocumentation.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ab38a97df39291f85450d1f693ab176edf1334c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
---
tag: m0017
title: Enable Steppers
brief: Enable steppers
author: thinkyhead

group: control

codes: [ M17 ]

notes:

parameters:
  -
    tag: X
    optional: true
    description: X Enable
    values:
      -
        tag: flag
        type: bool
  -
    tag: Y
    optional: true
    description: Y Enable
    values:
      -
        tag: flag
        type: bool
  -
    tag: Z
    optional: true
    description: Z Enable
    values:
      -
        tag: flag
        type: bool
  -
    tag: E
    optional: true
    description: E Enable
    values:
      -
        tag: flag
        type: bool


examples:
  -
    pre: Enable power on all stepper motors
    code: M17
  -
    pre: Enable Z and E steppers immediately
    code: M17 Z E

---

This command can be used to enable one or more steppers (`X`,`Y`,`Z`,`E`).

If no steppers are specified, this command enables all steppers immediately.

If one or more axes are specified, this command enables the specified steppers immediately.