mirror of https://github.com/Desuuuu/klipper.git
docs: Expand FAQ on why step_distance is used
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
parent
932acd3048
commit
71ef715a88
|
@ -38,6 +38,14 @@ each motor driver pulse. It can also be calculated from the axis
|
||||||
pitch, motor step angle, and driver microstepping. If unsure, do a web
|
pitch, motor step angle, and driver microstepping. If unsure, do a web
|
||||||
search for "calculate steps per mm" to find an online calculator.
|
search for "calculate steps per mm" to find an online calculator.
|
||||||
|
|
||||||
|
Klipper uses step_distance instead of steps_per_mm in order to use
|
||||||
|
consistent units of measurement in the config file. (The config uses
|
||||||
|
millimeters for all distance measurements.) It is believed that
|
||||||
|
steps_per_mm originates from a micro-optimization on old 8-bit
|
||||||
|
micro-controllers (the desire to use a multiply instead of a divide in
|
||||||
|
some low-level code). Continuing to configure this one distance in
|
||||||
|
units of "inverse millimeters" is felt to be quirky and unnecessary.
|
||||||
|
|
||||||
### Where's my serial port?
|
### Where's my serial port?
|
||||||
|
|
||||||
The general way to find a USB serial port is to run `ls -l
|
The general way to find a USB serial port is to run `ls -l
|
||||||
|
|
Loading…
Reference in New Issue