Shifted Layers with No Answers April 17, 2016 03:17PM |
Registered: 8 years ago Posts: 13 |
Re: Shifted Layers with No Answers April 17, 2016 06:52PM |
Registered: 9 years ago Posts: 1,873 |
Re: Shifted Layers with No Answers April 17, 2016 06:58PM |
Registered: 8 years ago Posts: 13 |
#define DEFAULT_AXIS_STEPS_PER_UNIT {48.14169,48.14169,1512.42,97.1402} #define DEFAULT_MAX_FEEDRATE {100, 100, 4, 10} // (mm/sec) #define DEFAULT_MAX_ACCELERATION {500,500,100,3000} // X, Y, Z, E maximum start speed for accelerated moves. E default values are good for Skeinforge 40+, for older versions raise them a lot. #define DEFAULT_ACCELERATION 100 // X, Y, Z and E max acceleration in mm/s^2 for printing moves #define DEFAULT_RETRACT_ACCELERATION 100 // X, Y, Z and E max acceleration in mm/s^2 for retracts // Offset of the extruders (uncomment if using more than one and relying on firmware to position when changing). // The offset has to be X=0, Y=0 for the extruder 0 hotend (default extruder). // For the other hotends it is their distance from the extruder 0 hotend. #define EXTRUDER_OFFSET_X {0.0, 31.75} // (in mm) for each extruder, offset of the hotend on the X axis #define EXTRUDER_OFFSET_Y {0.0, 0.0} // (in mm) for each extruder, offset of the hotend on the Y axis // The speed change that does not require acceleration (i.e. the software might assume it can be done instantaneously) #define DEFAULT_XYJERK 5.0 // (mm/sec) #define DEFAULT_ZJERK 0.4 // (mm/sec) #define DEFAULT_EJERK 5.0 // (mm/sec)
if (counter_x > 0) { counter_x -= current_block->step_event_count; count_position[X_AXIS]+=count_direction[X_AXIS]; delayMicroseconds(DELAY_WRITE_MICROSECONDS); WRITE(X_STEP_PIN, LOW); } if (counter_y > 0) { counter_y -= current_block->step_event_count; count_position[Y_AXIS]+=count_direction[Y_AXIS]; delayMicroseconds(DELAY_WRITE_MICROSECONDS); WRITE(Y_STEP_PIN, LOW); } if (counter_z > 0) { counter_z -= current_block->step_event_count; count_position[Z_AXIS]+=count_direction[Z_AXIS]; delayMicroseconds(DELAY_WRITE_MICROSECONDS); WRITE(Z_STEP_PIN, LOW); }
Re: Shifted Layers with No Answers April 17, 2016 08:37PM |
Registered: 9 years ago Posts: 778 |
Re: Shifted Layers with No Answers April 17, 2016 08:40PM |
Registered: 8 years ago Posts: 13 |
Re: Shifted Layers with No Answers April 18, 2016 09:32AM |
Registered: 8 years ago Posts: 49 |
Re: Shifted Layers with No Answers April 18, 2016 10:36AM |
Registered: 8 years ago Posts: 13 |
Re: Shifted Layers with No Answers April 18, 2016 10:51AM |
Registered: 10 years ago Posts: 770 |
Re: Shifted Layers with No Answers April 18, 2016 10:55AM |
Registered: 8 years ago Posts: 13 |
Re: Shifted Layers with No Answers April 19, 2016 01:50AM |
Registered: 9 years ago Posts: 35 |
Re: Shifted Layers with No Answers April 19, 2016 08:37AM |
Registered: 8 years ago Posts: 13 |
Re: Shifted Layers with No Answers April 19, 2016 09:47PM |
Registered: 9 years ago Posts: 705 |
Re: Shifted Layers with No Answers April 20, 2016 01:46AM |
Registered: 8 years ago Posts: 13 |
Re: Shifted Layers with No Answers April 20, 2016 07:23AM |
Registered: 8 years ago Posts: 413 |
Re: Shifted Layers with No Answers April 20, 2016 10:58AM |
Registered: 8 years ago Posts: 13 |
Re: Shifted Layers with No Answers April 20, 2016 12:16PM |
Registered: 9 years ago Posts: 778 |
Re: Shifted Layers with No Answers April 20, 2016 02:13PM |
Registered: 11 years ago Posts: 580 |
Re: Shifted Layers with No Answers April 21, 2016 12:15AM |
Registered: 8 years ago Posts: 13 |
Re: Shifted Layers with No Answers April 21, 2016 02:18AM |
Registered: 11 years ago Posts: 580 |
Re: Shifted Layers with No Answers April 21, 2016 02:32AM |
Registered: 9 years ago Posts: 778 |
Re: Shifted Layers with No Answers April 21, 2016 06:50AM |
Registered: 9 years ago Posts: 1,873 |
Quote
Try around the 2000 for accelleration and start with 40 for the jerk,
Re: Shifted Layers with No Answers April 21, 2016 11:05AM |
Registered: 9 years ago Posts: 778 |
Re: Shifted Layers with No Answers April 21, 2016 10:23PM |
Registered: 8 years ago Posts: 13 |
Re: Shifted Layers with No Answers April 21, 2016 10:28PM |
Registered: 9 years ago Posts: 778 |
Re: Shifted Layers with No Answers April 21, 2016 10:30PM |
Registered: 8 years ago Posts: 13 |
Re: Shifted Layers with No Answers April 22, 2016 04:48AM |
Registered: 9 years ago Posts: 778 |
Re: Shifted Layers with No Answers April 22, 2016 07:41AM |
Registered: 8 years ago Posts: 413 |
Re: Shifted Layers with No Answers April 22, 2016 08:28AM |
Registered: 9 years ago Posts: 1,873 |
Re: Shifted Layers with No Answers April 23, 2016 10:37PM |
Registered: 8 years ago Posts: 13 |
Re: Shifted Layers with No Answers April 24, 2016 09:07AM |
Registered: 9 years ago Posts: 1,873 |