diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2017-04-27 15:14:11 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2017-04-27 15:59:33 -0400 |
commit | c1c0b2dd387670b168ed6ac229f512e3cab1820e (patch) | |
tree | 0624592873110d73d7d2183451a1fd395ad21669 /docs/Features.md | |
parent | d7a11119558834595dc527fb8d4d5c494745825c (diff) | |
download | kutter-c1c0b2dd387670b168ed6ac229f512e3cab1820e.tar.gz kutter-c1c0b2dd387670b168ed6ac229f512e3cab1820e.tar.xz kutter-c1c0b2dd387670b168ed6ac229f512e3cab1820e.zip |
docs: Avoid using "firmware" in the documentation
The term "firmware" is ambiguous - it could refer to the entire
project (host and micro-controller software) or to just the
micro-controller software. Avoid the term in the documentation.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'docs/Features.md')
-rw-r--r-- | docs/Features.md | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/docs/Features.md b/docs/Features.md index 2857e9bd..dbc28ca4 100644 --- a/docs/Features.md +++ b/docs/Features.md @@ -1,4 +1,4 @@ -Klipper is a 3d printer firmware with several compelling features: +Klipper has several compelling features: * High precision stepper movement. Klipper utilizes an application processor (such as a low-cost Raspberry Pi) when calculating printer @@ -32,9 +32,9 @@ Klipper is a 3d printer firmware with several compelling features: micro-controller architectures as well. * Simpler code. Klipper uses a very high level language (Python) for - most code. The kinematics algorithms, the gcode parsing, the heating - and thermistor algorithms, etc. are all written in Python. This - makes it easier to develop new functionality. + most code. The kinematics algorithms, the G-code parsing, the + heating and thermistor algorithms, etc. are all written in + Python. This makes it easier to develop new functionality. * Advanced features: * Klipper implements the "pressure advance" algorithm for @@ -68,10 +68,10 @@ Klipper supports many standard 3d printer features: gradually accelerate from standstill to cruising speed and then decelerate back to a standstill. -* "Lookahead" support. The incoming stream of G-Code movement commands - are queued and analyzed - the acceleration between movements in a - similar direction will be optimized to reduce print stalls and - improve overall print time. +* "Look-ahead" support. The incoming stream of G-Code movement + commands are queued and analyzed - the acceleration between + movements in a similar direction will be optimized to reduce print + stalls and improve overall print time. * Support for cartesian, delta, and corexy style printers. |