|
X "Walking" .3mm with each layer? May 11, 2012 03:14PM |
Registered: 14 years ago Posts: 25 |
|
Re: X "Walking" .3mm with each layer? May 11, 2012 03:26PM |
Registered: 15 years ago Posts: 2,947 |
| FFF Settings Calculator | Gcode post processors | Geometric Object Deposition Tool Blog |
| Tantillus.org | Mini Printable Lathe | How NOT to install a Pololu driver |
|
Re: X "Walking" .3mm with each layer? May 11, 2012 03:35PM |
Registered: 14 years ago Posts: 25 |
|
Re: X "Walking" .3mm with each layer? May 11, 2012 03:47PM |
Registered: 14 years ago Posts: 939 |
|
Re: X "Walking" .3mm with each layer? May 11, 2012 05:00PM |
Registered: 16 years ago Posts: 689 |
|
Re: X "Walking" .3mm with each layer? May 11, 2012 05:21PM |
Registered: 14 years ago Posts: 25 |
|
Re: X "Walking" .3mm with each layer? May 11, 2012 06:26PM |
Registered: 14 years ago Posts: 939 |
|
Re: X "Walking" .3mm with each layer? May 11, 2012 07:19PM |
Registered: 14 years ago Posts: 25 |
|
Re: X "Walking" .3mm with each layer? May 11, 2012 09:08PM |
Registered: 14 years ago Posts: 25 |
|
Re: X "Walking" .3mm with each layer? May 11, 2012 09:37PM |
Registered: 14 years ago Posts: 939 |
|
Re: X "Walking" .3mm with each layer? May 11, 2012 09:58PM |
Registered: 14 years ago Posts: 25 |
|
Re: X "Walking" .3mm with each layer? May 11, 2012 10:10PM |
Registered: 14 years ago Posts: 939 |
|
Re: X "Walking" .3mm with each layer? May 11, 2012 10:28PM |
Registered: 14 years ago Posts: 25 |
|
Re: X "Walking" .3mm with each layer? May 12, 2012 04:45AM |
Registered: 16 years ago Posts: 689 |
|
Re: X "Walking" .3mm with each layer? May 12, 2012 12:28PM |
Registered: 14 years ago Posts: 939 |
|
Re: X "Walking" .3mm with each layer? May 12, 2012 03:23PM |
Admin Registered: 19 years ago Posts: 7,883 |
|
Re: X "Walking" .3mm with each layer? May 12, 2012 04:11PM |
Registered: 14 years ago Posts: 25 |
|
Re: X "Walking" .3mm with each layer? May 12, 2012 05:20PM |
Registered: 14 years ago Posts: 25 |
|
Re: X "Walking" .3mm with each layer? May 12, 2012 06:20PM |
Admin Registered: 19 years ago Posts: 7,883 |
|
Re: X "Walking" .3mm with each layer? May 12, 2012 06:26PM |
Registered: 14 years ago Posts: 25 |
|
Re: X "Walking" .3mm with each layer? May 13, 2012 05:05AM |
Registered: 14 years ago Posts: 939 |
|
Re: X "Walking" .3mm with each layer? May 13, 2012 06:30AM |
Admin Registered: 19 years ago Posts: 7,883 |
void do_step(int axis) {
switch(axis){
case 0:
WRITE(X_STEP_PIN, HIGH);
break;
case 1:
WRITE(Y_STEP_PIN, HIGH);
break;
case 2:
WRITE(Z_STEP_PIN, HIGH);
break;
case 3:
WRITE(E_STEP_PIN, HIGH);
break;
}
steps_taken[axis]+=1;
WRITE(X_STEP_PIN, LOW);
WRITE(Y_STEP_PIN, LOW);
WRITE(Z_STEP_PIN, LOW);
WRITE(E_STEP_PIN, LOW);
}
if (counter_x > 0) {
WRITE(X_STEP_PIN, HIGH);
counter_x -= current_block->step_event_count;
WRITE(X_STEP_PIN, LOW);
count_position[X_AXIS]+=count_direction[X_AXIS];
}
counter_y += current_block->steps_y;
if (counter_y > 0) {
WRITE(Y_STEP_PIN, HIGH);
counter_y -= current_block->step_event_count;
WRITE(Y_STEP_PIN, LOW);
count_position[Y_AXIS]+=count_direction[Y_AXIS];
}
counter_z += current_block->steps_z;
if (counter_z > 0) {
WRITE(Z_STEP_PIN, HIGH);
counter_z -= current_block->step_event_count;
WRITE(Z_STEP_PIN, LOW);
count_position[Z_AXIS]+=count_direction[Z_AXIS];
}
#ifndef ADVANCE
counter_e += current_block->steps_e;
if (counter_e > 0) {
WRITE_E_STEP(HIGH);
counter_e -= current_block->step_event_count;
WRITE_E_STEP(LOW);
count_position[E_AXIS]+=count_direction[E_AXIS];
}
#endif //!ADVANCE
|
Re: X "Walking" .3mm with each layer? May 13, 2012 05:58PM |
Registered: 14 years ago Posts: 939 |
|
Re: X "Walking" .3mm with each layer? May 13, 2012 10:29PM |
Registered: 14 years ago Posts: 25 |

|
Re: X "Walking" .3mm with each layer? (Solved) May 19, 2012 10:49PM |
Registered: 14 years ago Posts: 25 |
|
Re: X "Walking" .3mm with each layer? (Solved) May 20, 2012 09:27PM |
Registered: 14 years ago Posts: 53 |
|
Re: X "Walking" .3mm with each layer? June 09, 2012 05:36AM |
Registered: 14 years ago Posts: 88 |
|
Re: X "Walking" .3mm with each layer? June 09, 2012 06:00AM |
Admin Registered: 14 years ago Posts: 1,063 |
|
Re: X "Walking" .3mm with each layer? June 09, 2012 11:40PM |
|
Re: X "Walking" .3mm with each layer? June 12, 2012 08:31PM |
Registered: 14 years ago Posts: 25 |