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

M205.md « _gcode - github.com/MarlinFirmware/MarlinDocumentation.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 97d8a99503f40ac5e4451fe03024d73653cdc21a (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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
---
tag: m0205
title: Set Advanced Settings
brief: Set some advanced settings related to movement.
author: thinkyhead

group: motion

codes: [ M205 ]

notes:
  - View the current setting with [`M503`](/docs/gcode/M503.html).
  - If `EEPROM_SETTINGS` is enabled, these are saved with [`M500`](/docs/gcode/M500.html), loaded with [`M501`](/docs/gcode/M501.html), and reset with [`M502`](/docs/gcode/M502.html).

parameters:
  -
    tag: X
    optional: true
    description: X max jerk (units/s)
    values:
      -
        tag: jerk
        type: float
  -
    tag: Y
    optional: true
    description: Y max jerk (units/s)
    values:
      -
        tag: jerk
        type: float
  -
    tag: Z
    optional: true
    description: Z max jerk (units/s)
    values:
      -
        tag: jerk
        type: float
  -
    tag: E
    optional: true
    description: E max jerk (units/s)
    values:
      -
        tag: jerk
        type: float
  -
    tag: B
    optional: true
    description: Minimum segment time (µs)
    values:
      -
        tag: µs
        type: int
  -
    tag: S
    optional: true
    description: Minimum feedrate for print moves (units/s)
    values:
      -
        tag: units/s
        type: float
  -
    tag: T
    optional: true
    description: Minimum feedrate for travel moves (units/s)
    values:
      -
        tag: units/s
        type: float
  -
    tag: J
    optional: true
    description: Junction deviation (requires `JUNCTION_DEVIATION`)
    values:
      -
        tag: deviation
        type: float

videos:
  - Mnvj6xCzikM

examples:
  -
    pre: Set some advanced settings.
    code: M205 T40 ; Travel feedrate = 40mm/s

---

Set various motion settings. See parameters for details.