🎨 General cleanup, comments
This commit is contained in:
committed by
Scott Lahteine
parent
4a8b99d505
commit
9ac1c73041
@ -26,6 +26,7 @@
|
||||
|
||||
#include "../gcode.h"
|
||||
#include "../../MarlinCore.h"
|
||||
#include "../../lcd/marlinui.h"
|
||||
|
||||
/**
|
||||
* M16: Expected Printer Check
|
||||
@ -37,4 +38,4 @@ void GcodeSuite::M16() {
|
||||
|
||||
}
|
||||
|
||||
#endif
|
||||
#endif // EXPECTED_PRINTER_CHECK
|
||||
|
@ -180,7 +180,7 @@ void GcodeSuite::M360() {
|
||||
//
|
||||
config_line(F("NumExtruder"), EXTRUDERS);
|
||||
#if HAS_EXTRUDERS
|
||||
LOOP_L_N(e, EXTRUDERS) {
|
||||
EXTRUDER_LOOP() {
|
||||
config_line_e(e, JERK_STR, TERN(HAS_LINEAR_E_JERK, planner.max_e_jerk[E_INDEX_N(e)], TERN(HAS_CLASSIC_JERK, planner.max_jerk.e, DEFAULT_EJERK)));
|
||||
config_line_e(e, F("MaxSpeed"), planner.settings.max_feedrate_mm_s[E_AXIS_N(e)]);
|
||||
config_line_e(e, F("Acceleration"), planner.settings.max_acceleration_mm_per_s2[E_AXIS_N(e)]);
|
||||
|
Reference in New Issue
Block a user