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

M201.md « _gcode - github.com/MarlinFirmware/MarlinDocumentation.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0ae332dc211c3ca1894ca1ec9000a55ffc34c837 (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
---
tag: m0201
title: Print Move Limits
brief: Set acceleration and frequency limits for print moves.
author: thinkyhead

group: motion

codes: [ M201 ]

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 axis max acceleration
    values:
      -
        tag: accel
        type: float
  -
    tag: Y
    optional: true
    description: Y axis max acceleration
    values:
      -
        tag: accel
        type: float
  -
    tag: Z
    optional: true
    description: Z axis max acceleration
    values:
      -
        tag: accel
        type: float
  -
    tag: E
    optional: true
    description: E axis max acceleration
    values:
      -
        tag: accel
        type: float
  -
    tag: T
    optional: true
    description: Target extruder (Requires `DISTINCT_E_FACTORS`)
    values:
      -
        tag: index
        type: int
  -
    tag: F
    optional: true
    description: Planner frequency limit (Requires `XY_FREQUENCY_LIMIT`)
    values:
      -
        tag: Hz
        type: byte
  -
    tag: S
    optional: true
    description: Planner XY frequency minimum speed percentage (Requires `XY_FREQUENCY_LIMIT`)
    values:
      -
        tag: percent
        type: float

videos:
  - Mnvj6xCzikM

examples:
  -
    pre: 'Set max acceleration lower so it sounds like a robot:'
    code: M201 X50 Y50
---

Set the max acceleration for one or more axes (in current units-per-second squared). With `XY_FREQUENCY_LIMIT` you can also set the XY frequency limits.