Add a feedRate_t data type (#15349)
This commit is contained in:
@@ -71,12 +71,12 @@
|
||||
#elif ENABLED(MAGNETIC_PARKING_EXTRUDER)
|
||||
|
||||
typedef struct MPESettings {
|
||||
float parking_xpos[2], // M951 L R
|
||||
grab_distance, // M951 I
|
||||
slow_feedrate, // M951 J
|
||||
fast_feedrate, // M951 H
|
||||
travel_distance, // M951 D
|
||||
compensation_factor; // M951 C
|
||||
float parking_xpos[2], // M951 L R
|
||||
grab_distance; // M951 I
|
||||
feedRate_t slow_feedrate, // M951 J
|
||||
fast_feedrate; // M951 H
|
||||
float travel_distance, // M951 D
|
||||
compensation_factor; // M951 C
|
||||
} mpe_settings_t;
|
||||
|
||||
extern mpe_settings_t mpe_settings;
|
||||
|
||||
Reference in New Issue
Block a user