dec083dcc1
⚡ ️ Home Z (and maybe XY) at the start of G35 ( #22060 )
2021-06-15 00:12:27 -05:00
d84e2d6e29
🎨 ExtUI "user click" and other tweaks ( #22122 )
...
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com >
2021-06-15 00:11:57 -05:00
c9a3ba99be
🎨 Adjust some conditionals
2021-06-15 00:09:52 -05:00
c1fca91103
🏗️ Support for up to 6 linear axes ( #19112 )
...
Co-authored-by: Scott Lahteine <github@thinkyhead.com >
2021-06-15 00:05:03 -05:00
e75c3b6c54
🎨 Macros for optional arguments ( #21969 )
2021-05-29 15:09:07 -05:00
6a1e78e614
Optimize G-code flag parameters ( #21849 )
2021-05-15 15:05:53 -05:00
94edfc0a8f
Let M421 C select any point
...
Fixing #21147
2021-05-15 15:05:53 -05:00
158b26b875
Fix undefined abl_points
2021-05-01 20:23:33 -05:00
a1ee5124d3
Fix usage, commentary of MANUAL_PROBE_START_Z, Z_AFTER_PROBING ( #21692 )
...
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com >
2021-04-25 03:48:20 -05:00
b8cf818dac
Fix Realtime Reporting with G-code Motion Modes ( #21630 )
2021-04-17 03:54:43 -05:00
528b9bd872
Revert experimental NAN patch
...
Hold changes from #21575 (24a095c
) for more testing.
2021-04-16 02:43:59 -05:00
32dba5e0c7
Realtime Reporting, S000, P000, R000 ( #19330 )
2021-04-16 01:59:28 -05:00
58cc4b7043
Use celsius_t for temperature accessors
2021-04-15 20:18:20 -05:00
24a095c5c1
Reduce math library code size by 3.4KB ( #21575 )
2021-04-12 16:49:53 -05:00
1a2cbe100c
Macros to eliminate 'f + 0.0' ( #21568 )
2021-04-08 21:03:34 -05:00
75b790376d
Touch UI Bed Mesh Screen refactor, enhancements ( #21521 )
...
- Split mesh view and edit screen into two screens
- The editor now live-updates the graphics
- Added Touch UI mesh progress feedback to `G26`
- Show positive / negative mesh values in different colors
2021-04-04 18:58:03 -05:00
45c1432946
G26 Hilbert Curve followup ( #21480 )
2021-04-01 19:12:00 -05:00
62f37669dc
Replace 'const float &' with 'const_float_t' ( #21505 )
2021-04-01 17:59:57 -05:00
be775ed72d
Move apply_rotation_xyz into matrix_3x3
2021-03-30 23:58:32 -05:00
8d083eb248
Put ABL state into a class
2021-03-30 23:58:32 -05:00
930752d46e
Ender 3 V2 Status Line ( #21369 )
...
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com >
2021-03-24 10:12:57 -05:00
fd8207dd9a
Misc build fixes ( #21413 )
...
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com >
2021-03-24 09:14:11 -05:00
2d2291d00e
More IntelliSense-friendly declarations
2021-03-24 05:50:47 -05:00
da4b6896f7
Group UBL parameters, add comments
2021-03-24 05:50:47 -05:00
e5ff55a1be
Add typedef celsius_t ( #21374 )
2021-03-24 04:11:43 -05:00
dd42831cba
Serial macros cleanup
2021-02-28 20:02:24 -06:00
ee7701c15b
SPEED => FEEDRATE ( #21217 )
2021-02-27 15:54:43 -06:00
468e437390
Allow Zero Endstops (e.g., for CNC) ( #21120 )
...
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com >
2021-02-25 04:49:34 -06:00
9d24ee8daf
chmod and paths
2021-02-10 02:57:27 -06:00
e7c711996b
Serial refactor. Default 8-bit ECHO to int, not char ( #20985 )
...
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com >
2021-02-08 00:37:24 -06:00
708ea3d0bb
Use serial shorthand
2021-02-04 23:34:09 -06:00
ee93101b24
Custom G26 FR followup
2021-01-25 23:53:39 -06:00
7f4c5b86db
Adding custom move feedrate for G26 Travel moves, Original #20729 ( #20879 )
...
* Adding custom move feedrate for G26
This commit adds an additional configuration parameter that can be used to specify the movement speed during the G26 validation pattern command during moves without extrusion.
Closes MarlinFirmware/Marlin#20615
2021-01-25 20:14:26 -07:00
8f7bac4999
Revert "Adding custom move feedrate for G26 ( #20729 )" ( #20870 )
...
This reverts commit 14567f3459
.
2021-01-24 07:47:22 -07:00
14567f3459
Adding custom move feedrate for G26 ( #20729 )
...
* Adding custom move feedrate for G26
This commit adds an additional configuration parameter that can be used to specify the movement speed during the G26 validation pattern command during moves without extrusion.
Closes MarlinFirmware/Marlin#20615
* Fixing missing default 'G26_XY_FEEDRATE_MOVE' value
This commit adds a default 'G26_XY_FEEDRATE_MOVE' value (max movement speed / 1.5) in the G26.cpp - same behaviour as the default 'G26_XY_FEEDRATE' value
* Adding comment describing functionality in G26.cpp
* Renaming 'G26_XY_FEEDRATE_MOVE' to 'G26_XY_FEEDRATE_TRAVEL'
Configuration parameter renamed for better readability and consistency
MarlinFirmware/Marlin#20615
* Setting 'G26_XY_FEEDRATE_TRAVEL' to a safer value, aligned comments
Changed default value for 'G26_XY_FEEDRATE_TRAVEL' from 150 mm/s to 100 mm/s for safety purposes, comment alignment
MarlinFirmware/Marlin#20615
2021-01-22 20:02:22 -07:00
d33fe2378c
Move common strings ( #20846 )
2021-01-22 15:01:19 -06:00
bb597dcf66
Internal G29N for G28+G29 ( #20800 )
2021-01-17 12:08:40 -06:00
e685950d97
Assisted Tramming improvements ( #20298 )
2021-01-02 02:33:31 -06:00
7a168205eb
Minimum temp options for Probing and G12 Nozzle Clean ( #20383 )
...
Co-authored-by: Jason Smith <jason.inet@gmail.com >
Co-authored-by: Scott Lahteine <github@thinkyhead.com >
2020-12-19 22:02:38 -06:00
e349a44c60
Preheat before leveling
2020-12-14 20:34:22 -06:00
3404cb1fc4
Move ExtUI ABL mesh edit, limit to bilinear ( #20381 )
...
* Move ExtUI call
Co-authored-by: Scott Lahteine <github@thinkyhead.com >
Co-authored-by: Victor Mateus Oliveira <rhapsodyv@gmail.com >
Co-authored-by: Sebastiaan Dammann <sebastiaandammann@outlook.com >
2020-12-09 09:07:26 -08:00
a8dffdebd4
Move G29 3-point startup earlier
2020-12-05 20:05:39 -06:00
889695b6ba
ExtUI homing / leveling additions
2020-12-05 18:29:03 -06:00
b28b2ca266
Cosmetic G29 ABL tweak
2020-11-24 17:53:39 -06:00
ea371618da
Add Touch Calibration screen ( #20049 )
2020-11-15 16:39:58 -06:00
c753d2b7f4
Use extra G35 BLTouch HS Mode clearance in Tramming Wizard ( #20057 )
...
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com >
2020-11-08 18:31:14 -06:00
6954772ece
Tramming Wizard submenu option ( #20000 )
...
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com >
2020-11-07 03:20:27 -06:00
2cae26ee35
Fix G35 PROGMEM strings ( #19926 )
2020-10-27 17:25:01 -05:00
a596969049
Fix G2/G3 P<circles> E and Z motion ( #19797 )
...
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com >
2020-10-20 20:26:07 -05:00
6375829448
Apply home offsets to probing, Z Safe Homing ( #19423 )
...
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com >
2020-10-18 15:53:12 -05:00