Print moves very slow, gcode generated with inkscape June 01, 2020 11:35AM |
Registered: 4 years ago Posts: 13 |
Re: Print moves very slow, gcode generated with inkscape June 01, 2020 12:00PM |
Registered: 12 years ago Posts: 5,796 |
Re: Print moves very slow, gcode generated with inkscape June 01, 2020 12:58PM |
Registered: 7 years ago Posts: 61 |
Re: Print moves very slow, gcode generated with inkscape June 01, 2020 03:53PM |
Registered: 4 years ago Posts: 13 |
Re: Print moves very slow, gcode generated with inkscape June 01, 2020 04:36PM |
Registered: 12 years ago Posts: 5,796 |
Re: Print moves very slow, gcode generated with inkscape June 01, 2020 04:48PM |
Registered: 4 years ago Posts: 13 |
Re: Print moves very slow, gcode generated with inkscape June 01, 2020 08:42PM |
Registered: 7 years ago Posts: 61 |
Re: Print moves very slow, gcode generated with inkscape June 01, 2020 09:27PM |
Registered: 12 years ago Posts: 5,796 |
Re: Print moves very slow, gcode generated with inkscape June 02, 2020 05:27AM |
Registered: 4 years ago Posts: 13 |
M107 1 S0 G90 G21 G1 X1273.0515 Y1665.2401 G4 P0 M106 1 S1 G4 P200 G1 F10000.000000 G3 X1272.0575 Y1657.0319 I159.3581 J-23.462 G3 X1271.5225 Y1648.6104 I133.8019 J-12.7281 G3 X1271.3691 Y1632.7133 I358.035 J-11.405 G2 X1271.4675 Y1617.014 I-1251.8396 J-15.6993 G1 X1271.4675 Y1602.0473 G2 X1271.4019 Y1588.4518 I-1408.7268 J0. G3 X1271.4915 Y1575.4398 I393.4214 J-3.7971 G3 X1272.3357 Y1562.3419 I159.5654 J3.7078 G2 X1273.0522 Y1548.8323 I-128.1889 J-13.5729 G3 X1273.6029 Y1537.9284 I108.2177 J0.
#define ARC_SUPPORT // Disable this feature to save ~3226 bytes #if ENABLED(ARC_SUPPORT) #define MM_PER_ARC_SEGMENT 0.0 // Length of each arc segment //#define MIN_ARC_SEGMENTS 24 // Minimum number of segments in a complete circle #define MIN_ARC_SEGMENTS 0 //#define N_ARC_CORRECTION 25 // Number of interpolated segments between corrections #define ARC_P_CIRCLES // Enable the 'P' parameter to specify complete circles #define CNC_WORKSPACE_PLANES // Allow G2/G3 to operate in XY, ZX, or YZ planes #endif //////////////////////////////////////////////////////// /** * Default Jerk limits (mm/s) * Override with M205 X Y Z E * * "Jerk" specifies the minimum speed change that requires acceleration. * When changing speed and direction, if the difference is less than the * value set here, it may happen instantaneously. */ #define CLASSIC_JERK #if ENABLED(CLASSIC_JERK) #define DEFAULT_XJERK 400 #define DEFAULT_YJERK 400 #define DEFAULT_ZJERK 2.0 //#define LIMITED_JERK_EDITING // Limit edit via M205 or LCD to DEFAULT_JERK * 2 #if ENABLED(LIMITED_JERK_EDITING) #define MAX_JERK_EDIT_VALUES { 20, 20, 0.6, 10 } // ...or, set your own edit limits #endif #endif #define DEFAULT_EJERK 200.0 // May be used by Linear Advance
Re: Print moves very slow, gcode generated with inkscape June 02, 2020 07:25AM |
Registered: 7 years ago Posts: 61 |