2011-11-13 20:42:08 +01:00
/*
stepper . c - stepper motor driver : executes motion plans using stepper motors
Part of Grbl
Copyright ( c ) 2009 - 2011 Simen Svale Skogsrud
Grbl is free software : you can redistribute it and / or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation , either version 3 of the License , or
( at your option ) any later version .
Grbl is distributed in the hope that it will be useful ,
but WITHOUT ANY WARRANTY ; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
GNU General Public License for more details .
You should have received a copy of the GNU General Public License
along with Grbl . If not , see < http : //www.gnu.org/licenses/>.
*/
/* The timer calculations of this module informed by the 'RepRap cartesian firmware' by Zack Smith
and Philipp Tiefenbacher . */
# include "Marlin.h"
2011-12-22 14:55:45 +01:00
# include "stepper.h"
2011-11-13 20:42:08 +01:00
# include "planner.h"
# include "temperature.h"
# include "ultralcd.h"
2012-03-03 16:51:47 +01:00
# include "language.h"
2013-01-08 11:53:18 +01:00
# include "cardreader.h"
2011-11-13 20:42:08 +01:00
# include "speed_lookuptable.h"
2015-03-14 12:28:22 +01:00
# if HAS_DIGIPOTSS
# include <SPI.h>
2012-11-21 20:53:56 +01:00
# endif
2011-11-13 20:42:08 +01:00
//===========================================================================
2015-03-14 12:28:22 +01:00
//============================= public variables ============================
2011-11-13 20:42:08 +01:00
//===========================================================================
block_t * current_block ; // A pointer to the block currently being traced
//===========================================================================
2015-03-14 12:28:22 +01:00
//============================= private variables ===========================
2011-11-13 20:42:08 +01:00
//===========================================================================
2015-02-17 20:37:05 +01:00
//static makes it impossible to be called from outside of this file by extern.!
2011-11-13 20:42:08 +01:00
// Variables used by The Stepper Driver Interrupt
static unsigned char out_bits ; // The next stepping-bits to be output
2015-03-19 18:16:18 +01:00
static unsigned int cleaning_buffer_counter ;
2015-03-14 12:28:22 +01:00
2015-03-24 18:06:44 +01:00
# ifdef Z_DUAL_ENDSTOPS
static bool performing_homing = false ,
locked_z_motor = false ,
locked_z2_motor = false ;
# endif
2015-03-14 12:28:22 +01:00
// Counter variables for the bresenham line tracer
static long counter_x , counter_y , counter_z , counter_e ;
2011-11-27 21:12:55 +01:00
volatile static unsigned long step_events_completed ; // The number of step events executed in the current block
2015-03-14 12:28:22 +01:00
2011-11-13 20:42:08 +01:00
# ifdef ADVANCE
static long advance_rate , advance , final_advance = 0 ;
2011-12-04 19:54:07 +01:00
static long old_advance = 0 ;
2015-01-23 23:13:06 +01:00
static long e_steps [ 4 ] ;
2011-11-13 20:42:08 +01:00
# endif
2015-03-14 12:28:22 +01:00
2011-11-13 20:42:08 +01:00
static long acceleration_time , deceleration_time ;
//static unsigned long accelerate_until, decelerate_after, acceleration_rate, initial_rate, final_rate, nominal_rate;
static unsigned short acc_step_rate ; // needed for deccelaration start point
static char step_loops ;
2011-11-27 21:12:55 +01:00
static unsigned short OCR1A_nominal ;
2013-03-15 09:03:53 +01:00
static unsigned short step_loops_nominal ;
2011-11-13 20:42:08 +01:00
2015-03-14 12:28:22 +01:00
volatile long endstops_trigsteps [ 3 ] = { 0 } ;
volatile long endstops_stepsTotal , endstops_stepsDone ;
static volatile bool endstop_x_hit = false ;
static volatile bool endstop_y_hit = false ;
static volatile bool endstop_z_hit = false ;
2015-03-31 09:56:41 +02:00
static volatile bool endstop_z_probe_hit = false ;
2015-03-14 12:28:22 +01:00
2013-05-02 18:22:58 +02:00
# ifdef ABORT_ON_ENDSTOP_HIT_FEATURE_ENABLED
2015-03-14 12:28:22 +01:00
bool abort_on_endstop_hit = false ;
2013-05-02 18:22:58 +02:00
# endif
2015-03-14 12:28:22 +01:00
2014-01-06 11:05:02 +01:00
# ifdef MOTOR_CURRENT_PWM_XY_PIN
int motor_current_setting [ 3 ] = DEFAULT_PWM_MOTOR_CURRENT ;
# endif
2011-11-13 20:42:08 +01:00
2015-03-27 08:32:58 +01:00
# if defined(X_MIN_PIN) && X_MIN_PIN >= 0
static bool old_x_min_endstop = false ;
# endif
# if defined(X_MAX_PIN) && X_MAX_PIN >= 0
static bool old_x_max_endstop = false ;
# endif
# if defined(Y_MIN_PIN) && Y_MIN_PIN >= 0
static bool old_y_min_endstop = false ;
# endif
# if defined(Y_MAX_PIN) && Y_MAX_PIN >= 0
static bool old_y_max_endstop = false ;
# endif
2015-03-28 04:29:05 +01:00
# if defined(Z_MIN_PIN) && Z_MIN_PIN >= 0
static bool old_z_min_endstop = false ;
# endif
# if defined(Z_MAX_PIN) && Z_MAX_PIN >= 0
static bool old_z_max_endstop = false ;
# endif
2015-03-27 08:32:58 +01:00
# ifdef Z_DUAL_ENDSTOPS
2015-03-28 04:29:05 +01:00
# if defined(Z2_MIN_PIN) && Z2_MIN_PIN >= 0
static bool old_z2_min_endstop = false ;
# endif
# if defined(Z2_MAX_PIN) && Z2_MAX_PIN >= 0
static bool old_z2_max_endstop = false ;
# endif
2015-03-27 08:32:58 +01:00
# endif
2015-03-28 11:09:48 +01:00
# ifdef Z_PROBE_AND_ENDSTOP
static bool old_z_probe_endstop = false ;
# endif
2011-11-25 13:43:06 +01:00
2011-12-04 20:17:21 +01:00
static bool check_endstops = true ;
2015-03-14 12:28:22 +01:00
volatile long count_position [ NUM_AXIS ] = { 0 } ;
2015-03-20 13:45:05 +01:00
volatile signed char count_direction [ NUM_AXIS ] = { 1 , 1 , 1 , 1 } ;
2011-11-13 20:42:08 +01:00
2015-02-26 12:57:46 +01:00
2011-11-13 20:42:08 +01:00
//===========================================================================
2015-03-14 12:28:22 +01:00
//================================ functions ================================
2011-11-13 20:42:08 +01:00
//===========================================================================
2011-12-04 21:03:02 +01:00
2015-03-14 12:28:22 +01:00
# ifdef DUAL_X_CARRIAGE
# define X_APPLY_DIR(v,ALWAYS) \
if ( extruder_duplication_enabled | | ALWAYS ) { \
X_DIR_WRITE ( v ) ; \
X2_DIR_WRITE ( v ) ; \
} \
2015-03-22 00:43:47 +01:00
else { \
if ( current_block - > active_extruder ) X2_DIR_WRITE ( v ) ; else X_DIR_WRITE ( v ) ; \
2015-03-14 12:28:22 +01:00
}
# define X_APPLY_STEP(v,ALWAYS) \
if ( extruder_duplication_enabled | | ALWAYS ) { \
X_STEP_WRITE ( v ) ; \
X2_STEP_WRITE ( v ) ; \
} \
else { \
2015-03-22 00:43:47 +01:00
if ( current_block - > active_extruder ! = 0 ) X2_STEP_WRITE ( v ) ; else X_STEP_WRITE ( v ) ; \
2015-03-14 12:28:22 +01:00
}
# else
2015-03-15 02:31:25 +01:00
# define X_APPLY_DIR(v,Q) X_DIR_WRITE(v)
# define X_APPLY_STEP(v,Q) X_STEP_WRITE(v)
2015-03-14 12:28:22 +01:00
# endif
# ifdef Y_DUAL_STEPPER_DRIVERS
2015-03-22 00:43:47 +01:00
# define Y_APPLY_DIR(v,Q) { Y_DIR_WRITE(v); Y2_DIR_WRITE((v) != INVERT_Y2_VS_Y_DIR); }
# define Y_APPLY_STEP(v,Q) { Y_STEP_WRITE(v); Y2_STEP_WRITE(v); }
2015-03-14 12:28:22 +01:00
# else
2015-03-15 02:31:25 +01:00
# define Y_APPLY_DIR(v,Q) Y_DIR_WRITE(v)
# define Y_APPLY_STEP(v,Q) Y_STEP_WRITE(v)
2015-03-14 12:28:22 +01:00
# endif
# ifdef Z_DUAL_STEPPER_DRIVERS
2015-03-22 00:43:47 +01:00
# define Z_APPLY_DIR(v,Q) { Z_DIR_WRITE(v); Z2_DIR_WRITE(v); }
2015-03-24 18:06:44 +01:00
# ifdef Z_DUAL_ENDSTOPS
# define Z_APPLY_STEP(v,Q) \
if ( performing_homing ) { \
if ( Z_HOME_DIR > 0 ) { \
if ( ! ( old_z_max_endstop & & ( count_direction [ Z_AXIS ] > 0 ) ) & & ! locked_z_motor ) Z_STEP_WRITE ( v ) ; \
if ( ! ( old_z2_max_endstop & & ( count_direction [ Z_AXIS ] > 0 ) ) & & ! locked_z2_motor ) Z2_STEP_WRITE ( v ) ; \
} else { \
if ( ! ( old_z_min_endstop & & ( count_direction [ Z_AXIS ] < 0 ) ) & & ! locked_z_motor ) Z_STEP_WRITE ( v ) ; \
if ( ! ( old_z2_min_endstop & & ( count_direction [ Z_AXIS ] < 0 ) ) & & ! locked_z2_motor ) Z2_STEP_WRITE ( v ) ; \
} \
} else { \
Z_STEP_WRITE ( v ) ; \
Z2_STEP_WRITE ( v ) ; \
}
# else
2015-03-28 01:02:11 +01:00
# define Z_APPLY_STEP(v,Q) { Z_STEP_WRITE(v); Z2_STEP_WRITE(v); }
2015-03-24 18:06:44 +01:00
# endif
2015-03-14 12:28:22 +01:00
# else
2015-03-15 02:31:25 +01:00
# define Z_APPLY_DIR(v,Q) Z_DIR_WRITE(v)
# define Z_APPLY_STEP(v,Q) Z_STEP_WRITE(v)
2015-03-14 12:28:22 +01:00
# endif
2015-03-15 02:31:25 +01:00
# define E_APPLY_STEP(v,Q) E_STEP_WRITE(v)
2011-11-13 20:42:08 +01:00
// intRes = intIn1 * intIn2 >> 16
// uses:
// r26 to store 0
// r27 to store the byte 1 of the 24 bit result
# define MultiU16X8toH16(intRes, charIn1, intIn2) \
2015-03-14 12:28:22 +01:00
asm volatile ( \
" clr r26 \n \t " \
" mul %A1, %B2 \n \t " \
" movw %A0, r0 \n \t " \
" mul %A1, %A2 \n \t " \
" add %A0, r1 \n \t " \
" adc %B0, r26 \n \t " \
" lsr r0 \n \t " \
" adc %A0, r26 \n \t " \
" adc %B0, r26 \n \t " \
" clr r1 \n \t " \
: \
" =&r " ( intRes ) \
: \
" d " ( charIn1 ) , \
" d " ( intIn2 ) \
: \
" r26 " \
)
2011-11-13 20:42:08 +01:00
// intRes = longIn1 * longIn2 >> 24
// uses:
// r26 to store 0
// r27 to store the byte 1 of the 48bit result
# define MultiU24X24toH16(intRes, longIn1, longIn2) \
2015-03-14 12:28:22 +01:00
asm volatile ( \
" clr r26 \n \t " \
" mul %A1, %B2 \n \t " \
" mov r27, r1 \n \t " \
" mul %B1, %C2 \n \t " \
" movw %A0, r0 \n \t " \
" mul %C1, %C2 \n \t " \
" add %B0, r0 \n \t " \
" mul %C1, %B2 \n \t " \
" add %A0, r0 \n \t " \
" adc %B0, r1 \n \t " \
" mul %A1, %C2 \n \t " \
" add r27, r0 \n \t " \
" adc %A0, r1 \n \t " \
" adc %B0, r26 \n \t " \
" mul %B1, %B2 \n \t " \
" add r27, r0 \n \t " \
" adc %A0, r1 \n \t " \
" adc %B0, r26 \n \t " \
" mul %C1, %A2 \n \t " \
" add r27, r0 \n \t " \
" adc %A0, r1 \n \t " \
" adc %B0, r26 \n \t " \
" mul %B1, %A2 \n \t " \
" add r27, r1 \n \t " \
" adc %A0, r26 \n \t " \
" adc %B0, r26 \n \t " \
" lsr r27 \n \t " \
" adc %A0, r26 \n \t " \
" adc %B0, r26 \n \t " \
" clr r1 \n \t " \
: \
" =&r " ( intRes ) \
: \
" d " ( longIn1 ) , \
" d " ( longIn2 ) \
: \
" r26 " , " r27 " \
)
2011-11-13 20:42:08 +01:00
// Some useful constants
2015-03-14 12:28:22 +01:00
# define ENABLE_STEPPER_DRIVER_INTERRUPT() TIMSK1 |= BIT(OCIE1A)
# define DISABLE_STEPPER_DRIVER_INTERRUPT() TIMSK1 &= ~BIT(OCIE1A)
2011-11-13 20:42:08 +01:00
2015-03-14 12:28:22 +01:00
void endstops_hit_on_purpose ( ) {
2015-03-31 09:56:41 +02:00
endstop_x_hit = endstop_y_hit = endstop_z_hit = endstop_z_probe_hit = false ;
2011-11-13 20:46:44 +01:00
}
2011-11-13 20:42:08 +01:00
2015-03-14 12:28:22 +01:00
void checkHitEndstops ( ) {
2015-03-31 09:56:41 +02:00
if ( endstop_x_hit | | endstop_y_hit | | endstop_z_hit | | endstop_z_probe_hit ) {
2015-03-14 12:28:22 +01:00
SERIAL_ECHO_START ;
SERIAL_ECHOPGM ( MSG_ENDSTOPS_HIT ) ;
if ( endstop_x_hit ) {
SERIAL_ECHOPAIR ( " X: " , ( float ) endstops_trigsteps [ X_AXIS ] / axis_steps_per_unit [ X_AXIS ] ) ;
LCD_MESSAGEPGM ( MSG_ENDSTOPS_HIT " X " ) ;
}
if ( endstop_y_hit ) {
SERIAL_ECHOPAIR ( " Y: " , ( float ) endstops_trigsteps [ Y_AXIS ] / axis_steps_per_unit [ Y_AXIS ] ) ;
LCD_MESSAGEPGM ( MSG_ENDSTOPS_HIT " Y " ) ;
}
if ( endstop_z_hit ) {
SERIAL_ECHOPAIR ( " Z: " , ( float ) endstops_trigsteps [ Z_AXIS ] / axis_steps_per_unit [ Z_AXIS ] ) ;
LCD_MESSAGEPGM ( MSG_ENDSTOPS_HIT " Z " ) ;
}
2015-03-31 09:56:41 +02:00
if ( endstop_z_probe_hit ) {
SERIAL_ECHOPAIR ( " Z_PROBE: " , ( float ) endstops_trigsteps [ Z_AXIS ] / axis_steps_per_unit [ Z_AXIS ] ) ;
LCD_MESSAGEPGM ( MSG_ENDSTOPS_HIT " ZP " ) ;
}
2015-03-14 12:28:22 +01:00
SERIAL_EOL ;
endstops_hit_on_purpose ( ) ;
# if defined(ABORT_ON_ENDSTOP_HIT_FEATURE_ENABLED) && defined(SDSUPPORT)
if ( abort_on_endstop_hit ) {
card . sdprinting = false ;
card . closefile ( ) ;
quickStop ( ) ;
setTargetHotend0 ( 0 ) ;
setTargetHotend1 ( 0 ) ;
setTargetHotend2 ( 0 ) ;
setTargetHotend3 ( 0 ) ;
setTargetBed ( 0 ) ;
}
# endif
}
2011-12-04 20:17:21 +01:00
}
2015-03-14 12:28:22 +01:00
void enable_endstops ( bool check ) { check_endstops = check ; }
2011-11-13 20:42:08 +01:00
// __________________________
// /| |\ _________________ ^
// / | | \ /| |\ |
// / | | \ / | | \ s
// / | | | | | \ p
// / | | | | | \ e
// +-----+------------------------+---+--+---------------+----+ e
// | BLOCK 1 | BLOCK 2 | d
//
// time ----->
2013-08-01 15:06:39 +02:00
//
// The trapezoid is the shape the speed curve over time. It starts at block->initial_rate, accelerates
// first block->accelerate_until step_events_completed, then keeps going at constant speed until
2011-11-13 20:42:08 +01:00
// step_events_completed reaches block->decelerate_after after which it decelerates until the trapezoid generator is reset.
// The slope of acceleration is calculated with the leib ramp alghorithm.
void st_wake_up ( ) {
// TCNT1 = 0;
2013-08-01 15:06:39 +02:00
ENABLE_STEPPER_DRIVER_INTERRUPT ( ) ;
2011-11-13 20:42:08 +01:00
}
2011-11-27 16:45:00 +01:00
FORCE_INLINE unsigned short calc_timer ( unsigned short step_rate ) {
2011-11-13 20:42:08 +01:00
unsigned short timer ;
2015-03-14 12:28:22 +01:00
if ( step_rate > MAX_STEP_FREQUENCY ) step_rate = MAX_STEP_FREQUENCY ;
2013-08-01 15:06:39 +02:00
2015-03-14 12:28:22 +01:00
if ( step_rate > 20000 ) { // If steprate > 20kHz >> step 4 times
step_rate = ( step_rate > > 2 ) & 0x3fff ;
2011-11-13 20:42:08 +01:00
step_loops = 4 ;
}
2015-03-14 12:28:22 +01:00
else if ( step_rate > 10000 ) { // If steprate > 10kHz >> step 2 times
step_rate = ( step_rate > > 1 ) & 0x7fff ;
2011-11-13 20:42:08 +01:00
step_loops = 2 ;
}
else {
step_loops = 1 ;
2013-08-01 15:06:39 +02:00
}
2015-03-14 12:28:22 +01:00
if ( step_rate < ( F_CPU / 500000 ) ) step_rate = ( F_CPU / 500000 ) ;
step_rate - = ( F_CPU / 500000 ) ; // Correct for minimal speed
if ( step_rate > = ( 8 * 256 ) ) { // higher step rate
2011-11-13 20:42:08 +01:00
unsigned short table_address = ( unsigned short ) & speed_lookuptable_fast [ ( unsigned char ) ( step_rate > > 8 ) ] [ 0 ] ;
unsigned char tmp_step_rate = ( step_rate & 0x00ff ) ;
unsigned short gain = ( unsigned short ) pgm_read_word_near ( table_address + 2 ) ;
MultiU16X8toH16 ( timer , tmp_step_rate , gain ) ;
timer = ( unsigned short ) pgm_read_word_near ( table_address ) - timer ;
}
else { // lower step rates
unsigned short table_address = ( unsigned short ) & speed_lookuptable_slow [ 0 ] [ 0 ] ;
table_address + = ( ( step_rate ) > > 1 ) & 0xfffc ;
timer = ( unsigned short ) pgm_read_word_near ( table_address ) ;
timer - = ( ( ( unsigned short ) pgm_read_word_near ( table_address + 2 ) * ( unsigned char ) ( step_rate & 0x0007 ) ) > > 3 ) ;
}
2015-03-14 12:28:22 +01:00
if ( timer < 100 ) { timer = 100 ; MYSERIAL . print ( MSG_STEPPER_TOO_HIGH ) ; MYSERIAL . println ( step_rate ) ; } //(20kHz this should never happen)
2011-11-13 20:42:08 +01:00
return timer ;
}
2013-08-01 15:06:39 +02:00
// Initializes the trapezoid generator from the current block. Called whenever a new
2011-11-13 20:42:08 +01:00
// block begins.
2011-11-27 16:45:00 +01:00
FORCE_INLINE void trapezoid_generator_reset ( ) {
2011-11-13 20:42:08 +01:00
# ifdef ADVANCE
advance = current_block - > initial_advance ;
final_advance = current_block - > final_advance ;
2011-12-04 19:54:07 +01:00
// Do E steps + advance steps
2011-12-12 19:34:37 +01:00
e_steps [ current_block - > active_extruder ] + = ( ( advance > > 8 ) - old_advance ) ;
2013-08-01 15:06:39 +02:00
old_advance = advance > > 8 ;
2011-11-13 20:42:08 +01:00
# endif
deceleration_time = 0 ;
// step_rate to timer interval
2012-06-11 17:33:42 +02:00
OCR1A_nominal = calc_timer ( current_block - > nominal_rate ) ;
2013-03-15 09:03:53 +01:00
// make a note of the number of step loops required at nominal speed
step_loops_nominal = step_loops ;
2011-11-13 20:42:08 +01:00
acc_step_rate = current_block - > initial_rate ;
acceleration_time = calc_timer ( acc_step_rate ) ;
OCR1A = acceleration_time ;
2013-08-01 15:06:39 +02:00
2015-03-14 12:28:22 +01:00
// SERIAL_ECHO_START;
// SERIAL_ECHOPGM("advance :");
// SERIAL_ECHO(current_block->advance/256.0);
// SERIAL_ECHOPGM("advance rate :");
// SERIAL_ECHO(current_block->advance_rate/256.0);
// SERIAL_ECHOPGM("initial advance :");
// SERIAL_ECHO(current_block->initial_advance/256.0);
// SERIAL_ECHOPGM("final advance :");
// SERIAL_ECHOLN(current_block->final_advance/256.0);
2011-11-13 20:42:08 +01:00
}
2013-08-01 15:06:39 +02:00
// "The Stepper Driver Interrupt" - This timer interrupt is the workhorse.
// It pops blocks from the block_buffer and executes them by pulsing the stepper pins appropriately.
2015-03-14 12:28:22 +01:00
ISR ( TIMER1_COMPA_vect ) {
2015-03-19 18:16:18 +01:00
if ( cleaning_buffer_counter )
{
current_block = NULL ;
plan_discard_current_block ( ) ;
2015-03-31 08:31:48 +02:00
# ifdef SD_FINISHED_RELEASECOMMAND
if ( ( cleaning_buffer_counter = = 1 ) & & ( SD_FINISHED_STEPPERRELEASE ) ) enquecommands_P ( PSTR ( SD_FINISHED_RELEASECOMMAND ) ) ;
# endif
2015-03-19 18:16:18 +01:00
cleaning_buffer_counter - - ;
OCR1A = 200 ;
return ;
}
2011-11-13 20:42:08 +01:00
// If there is no current block, attempt to pop one from the buffer
2015-03-14 12:28:22 +01:00
if ( ! current_block ) {
2011-11-13 20:42:08 +01:00
// Anything in the buffer?
current_block = plan_get_current_block ( ) ;
2015-03-14 12:28:22 +01:00
if ( current_block ) {
2012-04-15 19:17:33 +02:00
current_block - > busy = true ;
2011-11-13 20:42:08 +01:00
trapezoid_generator_reset ( ) ;
counter_x = - ( current_block - > step_event_count > > 1 ) ;
2015-03-14 12:28:22 +01:00
counter_y = counter_z = counter_e = counter_x ;
2013-08-01 15:06:39 +02:00
step_events_completed = 0 ;
# ifdef Z_LATE_ENABLE
2015-03-21 04:42:49 +01:00
if ( current_block - > steps [ Z_AXIS ] > 0 ) {
2012-02-06 17:38:16 +01:00
enable_z ( ) ;
OCR1A = 2000 ; //1ms wait
return ;
}
# endif
2013-08-01 15:06:39 +02:00
2015-03-14 12:28:22 +01:00
// #ifdef ADVANCE
// e_steps[current_block->active_extruder] = 0;
// #endif
2013-08-01 15:06:39 +02:00
}
2011-11-13 20:42:08 +01:00
else {
2015-03-14 12:28:22 +01:00
OCR1A = 2000 ; // 1kHz.
2013-08-01 15:06:39 +02:00
}
}
2011-11-13 20:42:08 +01:00
if ( current_block ! = NULL ) {
// Set directions TO DO This should be done once during init of trapezoid. Endstops -> interrupt
out_bits = current_block - > direction_bits ;
2013-06-09 13:10:06 +02:00
// Set the direction bits (X_AXIS=A_AXIS and Y_AXIS=B_AXIS for COREXY)
2015-03-14 12:28:22 +01:00
if ( TEST ( out_bits , X_AXIS ) ) {
2015-03-15 02:31:25 +01:00
X_APPLY_DIR ( INVERT_X_DIR , 0 ) ;
2015-03-14 12:28:22 +01:00
count_direction [ X_AXIS ] = - 1 ;
2013-06-09 13:10:06 +02:00
}
2015-03-14 12:28:22 +01:00
else {
2015-03-15 02:31:25 +01:00
X_APPLY_DIR ( ! INVERT_X_DIR , 0 ) ;
2015-03-14 12:28:22 +01:00
count_direction [ X_AXIS ] = 1 ;
2013-06-09 13:10:06 +02:00
}
2015-03-14 12:28:22 +01:00
if ( TEST ( out_bits , Y_AXIS ) ) {
2015-03-15 02:31:25 +01:00
Y_APPLY_DIR ( INVERT_Y_DIR , 0 ) ;
2015-03-14 12:28:22 +01:00
count_direction [ Y_AXIS ] = - 1 ;
2013-06-09 13:10:06 +02:00
}
2015-03-14 12:28:22 +01:00
else {
2015-03-15 02:31:25 +01:00
Y_APPLY_DIR ( ! INVERT_Y_DIR , 0 ) ;
2015-03-14 12:28:22 +01:00
count_direction [ Y_AXIS ] = 1 ;
2013-06-09 13:10:06 +02:00
}
2013-08-01 15:06:39 +02:00
2015-03-14 12:28:22 +01:00
# define UPDATE_ENDSTOP(axis,AXIS,minmax,MINMAX) \
bool axis # # _ # # minmax # # _endstop = ( READ ( AXIS # # _ # # MINMAX # # _PIN ) ! = AXIS # # _ # # MINMAX # # _ENDSTOP_INVERTING ) ; \
2015-03-21 04:42:49 +01:00
if ( axis # # _ # # minmax # # _endstop & & old_ # # axis # # _ # # minmax # # _endstop & & ( current_block - > steps [ AXIS # # _AXIS ] > 0 ) ) { \
2015-03-14 12:28:22 +01:00
endstops_trigsteps [ AXIS # # _AXIS ] = count_position [ AXIS # # _AXIS ] ; \
endstop_ # # axis # # _hit = true ; \
step_events_completed = current_block - > step_event_count ; \
} \
old_ # # axis # # _ # # minmax # # _endstop = axis # # _ # # minmax # # _endstop ;
// Check X and Y endstops
if ( check_endstops ) {
2015-03-21 04:42:49 +01:00
# ifdef COREXY
2015-03-14 12:28:22 +01:00
// Head direction in -X axis for CoreXY bots.
// If DeltaX == -DeltaY, the movement is only in Y axis
2015-03-30 01:42:35 +02:00
if ( ( current_block - > steps [ A_AXIS ] ! = current_block - > steps [ B_AXIS ] ) | | ( TEST ( out_bits , A_AXIS ) = = TEST ( out_bits , B_AXIS ) ) ) {
2015-03-21 04:42:49 +01:00
if ( TEST ( out_bits , X_HEAD ) )
2015-03-16 20:31:25 +01:00
# else
2015-03-21 04:42:49 +01:00
if ( TEST ( out_bits , X_AXIS ) ) // stepping along -X axis (regular cartesians bot)
# endif
{ // -direction
# ifdef DUAL_X_CARRIAGE
// with 2 x-carriages, endstops are only checked in the homing direction for the active extruder
if ( ( current_block - > active_extruder = = 0 & & X_HOME_DIR = = - 1 ) | | ( current_block - > active_extruder ! = 0 & & X2_HOME_DIR = = - 1 ) )
# endif
{
# if defined(X_MIN_PIN) && X_MIN_PIN >= 0
UPDATE_ENDSTOP ( x , X , min , MIN ) ;
# endif
}
}
else { // +direction
# ifdef DUAL_X_CARRIAGE
// with 2 x-carriages, endstops are only checked in the homing direction for the active extruder
if ( ( current_block - > active_extruder = = 0 & & X_HOME_DIR = = 1 ) | | ( current_block - > active_extruder ! = 0 & & X2_HOME_DIR = = 1 ) )
# endif
{
# if defined(X_MAX_PIN) && X_MAX_PIN >= 0
UPDATE_ENDSTOP ( x , X , max , MAX ) ;
# endif
}
}
# ifdef COREXY
2015-03-30 01:42:35 +02:00
}
2015-03-16 20:31:25 +01:00
// Head direction in -Y axis for CoreXY bots.
// If DeltaX == DeltaY, the movement is only in X axis
2015-03-30 01:42:35 +02:00
if ( ( current_block - > steps [ A_AXIS ] ! = current_block - > steps [ B_AXIS ] ) | | ( TEST ( out_bits , A_AXIS ) ! = TEST ( out_bits , B_AXIS ) ) ) {
2015-03-21 04:42:49 +01:00
if ( TEST ( out_bits , Y_HEAD ) )
# else
if ( TEST ( out_bits , Y_AXIS ) ) // -direction
2015-03-16 20:31:25 +01:00
# endif
2015-03-21 04:42:49 +01:00
{ // -direction
# if defined(Y_MIN_PIN) && Y_MIN_PIN >= 0
UPDATE_ENDSTOP ( y , Y , min , MIN ) ;
# endif
}
else { // +direction
# if defined(Y_MAX_PIN) && Y_MAX_PIN >= 0
UPDATE_ENDSTOP ( y , Y , max , MAX ) ;
# endif
}
2015-03-30 01:42:35 +02:00
# ifdef COREXY
}
# endif
2011-11-13 20:42:08 +01:00
}
2013-06-09 13:10:06 +02:00
2015-03-14 12:28:22 +01:00
if ( TEST ( out_bits , Z_AXIS ) ) { // -direction
2015-03-24 18:06:44 +01:00
Z_APPLY_DIR ( INVERT_Z_DIR , 0 ) ;
2015-03-14 12:28:22 +01:00
count_direction [ Z_AXIS ] = - 1 ;
2015-03-31 06:51:36 +02:00
if ( check_endstops )
{
# if defined(Z_MIN_PIN) && Z_MIN_PIN > -1
# ifndef Z_DUAL_ENDSTOPS
UPDATE_ENDSTOP ( z , Z , min , MIN ) ;
# else
bool z_min_endstop = ( READ ( Z_MIN_PIN ) ! = Z_MIN_ENDSTOP_INVERTING ) ;
# if defined(Z2_MIN_PIN) && Z2_MIN_PIN > -1
bool z2_min_endstop = ( READ ( Z2_MIN_PIN ) ! = Z2_MIN_ENDSTOP_INVERTING ) ;
# else
bool z2_min_endstop = z_min_endstop ;
# endif
if ( ( ( z_min_endstop & & old_z_min_endstop ) | | ( z2_min_endstop & & old_z2_min_endstop ) ) & & ( current_block - > steps [ Z_AXIS ] > 0 ) )
{
2015-03-24 18:06:44 +01:00
endstops_trigsteps [ Z_AXIS ] = count_position [ Z_AXIS ] ;
2015-03-31 06:51:36 +02:00
endstop_z_hit = true ;
if ( ! ( performing_homing ) | | ( ( performing_homing ) & & ( z_min_endstop & & old_z_min_endstop ) & & ( z2_min_endstop & & old_z2_min_endstop ) ) ) //if not performing home or if both endstops were trigged during homing...
{
2015-03-24 18:06:44 +01:00
step_events_completed = current_block - > step_event_count ;
2015-03-31 06:51:36 +02:00
}
2015-03-24 18:06:44 +01:00
}
old_z_min_endstop = z_min_endstop ;
old_z2_min_endstop = z2_min_endstop ;
# endif
2011-12-04 20:17:21 +01:00
# endif
2015-03-28 10:31:51 +01:00
# if defined(Z_PROBE_PIN) && Z_PROBE_PIN > -1
UPDATE_ENDSTOP ( z , Z , probe , PROBE ) ;
2015-03-31 08:06:01 +02:00
z_probe_endstop = ( READ ( Z_PROBE_PIN ) ! = Z_PROBE_ENDSTOP_INVERTING ) ;
2015-03-28 10:31:51 +01:00
if ( z_probe_endstop & & old_z_probe_endstop )
{
endstops_trigsteps [ Z_AXIS ] = count_position [ Z_AXIS ] ;
2015-03-31 09:56:41 +02:00
endstop_z_probe_hit = true ;
2015-03-28 10:31:51 +01:00
// if (z_probe_endstop && old_z_probe_endstop) SERIAL_ECHOLN("z_probe_endstop = true");
}
old_z_probe_endstop = z_probe_endstop ;
# endif
2011-12-04 20:17:21 +01:00
}
2011-11-13 20:42:08 +01:00
}
else { // +direction
2015-03-24 18:06:44 +01:00
Z_APPLY_DIR ( ! INVERT_Z_DIR , 0 ) ;
2015-03-14 12:28:22 +01:00
count_direction [ Z_AXIS ] = 1 ;
if ( check_endstops ) {
# if defined(Z_MAX_PIN) && Z_MAX_PIN >= 0
2015-03-31 06:51:36 +02:00
# ifndef Z_DUAL_ENDSTOPS
UPDATE_ENDSTOP ( z , Z , max , MAX ) ;
# else
bool z_max_endstop = ( READ ( Z_MAX_PIN ) ! = Z_MAX_ENDSTOP_INVERTING ) ;
# if defined(Z2_MAX_PIN) && Z2_MAX_PIN > -1
bool z2_max_endstop = ( READ ( Z2_MAX_PIN ) ! = Z2_MAX_ENDSTOP_INVERTING ) ;
# else
bool z2_max_endstop = z_max_endstop ;
# endif
if ( ( ( z_max_endstop & & old_z_max_endstop ) | | ( z2_max_endstop & & old_z2_max_endstop ) ) & & ( current_block - > steps [ Z_AXIS ] > 0 ) )
{
2015-03-24 18:06:44 +01:00
endstops_trigsteps [ Z_AXIS ] = count_position [ Z_AXIS ] ;
2015-03-31 06:51:36 +02:00
endstop_z_hit = true ;
2015-03-24 18:06:44 +01:00
2015-03-31 06:51:36 +02:00
// if (z_max_endstop && old_z_max_endstop) SERIAL_ECHOLN("z_max_endstop = true");
// if (z2_max_endstop && old_z2_max_endstop) SERIAL_ECHOLN("z2_max_endstop = true");
2015-03-24 18:06:44 +01:00
2015-03-31 06:51:36 +02:00
if ( ! ( performing_homing ) | | ( ( performing_homing ) & & ( z_max_endstop & & old_z_max_endstop ) & & ( z2_max_endstop & & old_z2_max_endstop ) ) ) //if not performing home or if both endstops were trigged during homing...
{
2015-03-24 18:06:44 +01:00
step_events_completed = current_block - > step_event_count ;
2015-03-31 06:51:36 +02:00
}
2015-03-24 18:06:44 +01:00
}
old_z_max_endstop = z_max_endstop ;
old_z2_max_endstop = z2_max_endstop ;
# endif
2011-12-04 20:17:21 +01:00
# endif
2015-03-28 10:31:51 +01:00
# if defined(Z_PROBE_PIN) && Z_PROBE_PIN > -1
UPDATE_ENDSTOP ( z , Z , probe , PROBE ) ;
2015-03-31 08:06:01 +02:00
z_probe_endstop = ( READ ( Z_PROBE_PIN ) ! = Z_PROBE_ENDSTOP_INVERTING ) ;
2015-03-28 10:31:51 +01:00
if ( z_probe_endstop & & old_z_probe_endstop )
{
endstops_trigsteps [ Z_AXIS ] = count_position [ Z_AXIS ] ;
2015-03-31 09:56:41 +02:00
endstop_z_probe_hit = true ;
2015-03-28 10:31:51 +01:00
// if (z_probe_endstop && old_z_probe_endstop) SERIAL_ECHOLN("z_probe_endstop = true");
}
old_z_probe_endstop = z_probe_endstop ;
# endif
2011-12-04 20:17:21 +01:00
}
2011-11-13 20:42:08 +01:00
}
# ifndef ADVANCE
2015-03-14 12:28:22 +01:00
if ( TEST ( out_bits , E_AXIS ) ) { // -direction
2011-12-12 19:34:37 +01:00
REV_E_DIR ( ) ;
2015-03-31 06:51:36 +02:00
count_direction [ E_AXIS ] = - 1 ;
2011-11-20 14:50:08 +01:00
}
else { // +direction
2011-12-12 19:34:37 +01:00
NORM_E_DIR ( ) ;
2015-03-31 06:51:36 +02:00
count_direction [ E_AXIS ] = 1 ;
2011-11-20 14:50:08 +01:00
}
2011-11-13 20:42:08 +01:00
# endif //!ADVANCE
2011-12-04 19:54:07 +01:00
2015-03-14 12:28:22 +01:00
// Take multiple steps per interrupt (For high speed moves)
2015-03-31 06:51:36 +02:00
for ( int8_t i = 0 ; i < step_loops ; i + + ) {
2012-12-09 10:32:09 +01:00
# ifndef AT90USB
2015-03-14 12:28:22 +01:00
MSerial . checkRx ( ) ; // Check for serial chars.
2012-12-09 10:32:09 +01:00
# endif
2011-12-02 17:45:05 +01:00
# ifdef ADVANCE
2015-03-21 04:42:49 +01:00
counter_e + = current_block - > steps [ E_AXIS ] ;
2014-12-03 15:01:52 +01:00
if ( counter_e > 0 ) {
counter_e - = current_block - > step_event_count ;
2015-03-14 12:28:22 +01:00
e_steps [ current_block - > active_extruder ] + = TEST ( out_bits , E_AXIS ) ? - 1 : 1 ;
2012-07-14 13:43:19 +02:00
}
2015-03-14 12:28:22 +01:00
# endif //ADVANCE
2013-08-01 15:06:39 +02:00
2015-03-14 12:28:22 +01:00
# ifdef CONFIG_STEPPERS_TOSHIBA
/**
* The Toshiba stepper controller require much longer pulses .
* So we ' stage ' decompose the pulses between high and low
* instead of doing each in turn . The extra tests add enough
* lag to allow it work with without needing NOPs
*/
2015-03-21 04:42:49 +01:00
# define STEP_ADD(axis, AXIS) \
counter_ # # axis + = current_block - > steps [ AXIS # # _AXIS ] ; \
if ( counter_ # # axis > 0 ) { AXIS # # _STEP_WRITE ( HIGH ) ; }
STEP_ADD ( x , X ) ;
STEP_ADD ( y , Y ) ;
STEP_ADD ( z , Z ) ;
2015-03-14 12:28:22 +01:00
# ifndef ADVANCE
2015-03-21 04:42:49 +01:00
STEP_ADD ( e , E ) ;
2015-03-14 12:28:22 +01:00
# endif
# define STEP_IF_COUNTER(axis, AXIS) \
2015-03-17 12:50:44 +01:00
if ( counter_ # # axis > 0 ) { \
2015-03-14 12:28:22 +01:00
counter_ # # axis - = current_block - > step_event_count ; \
count_position [ AXIS # # _AXIS ] + = count_direction [ AXIS # # _AXIS ] ; \
2015-03-17 12:50:44 +01:00
AXIS # # _STEP_WRITE ( LOW ) ; \
2015-03-14 12:28:22 +01:00
}
2013-08-01 15:06:39 +02:00
2015-03-14 12:28:22 +01:00
STEP_IF_COUNTER ( x , X ) ;
STEP_IF_COUNTER ( y , Y ) ;
STEP_IF_COUNTER ( z , Z ) ;
# ifndef ADVANCE
STEP_IF_COUNTER ( e , E ) ;
2012-08-04 08:32:26 +02:00
# endif
2013-08-01 15:06:39 +02:00
2015-03-14 12:28:22 +01:00
# else // !CONFIG_STEPPERS_TOSHIBA
# define APPLY_MOVEMENT(axis, AXIS) \
2015-03-21 04:42:49 +01:00
counter_ # # axis + = current_block - > steps [ AXIS # # _AXIS ] ; \
2015-03-14 12:28:22 +01:00
if ( counter_ # # axis > 0 ) { \
2015-03-15 02:31:25 +01:00
AXIS # # _APPLY_STEP ( ! INVERT_ # # AXIS # # _STEP_PIN , 0 ) ; \
2015-03-14 12:28:22 +01:00
counter_ # # axis - = current_block - > step_event_count ; \
count_position [ AXIS # # _AXIS ] + = count_direction [ AXIS # # _AXIS ] ; \
2015-03-15 02:31:25 +01:00
AXIS # # _APPLY_STEP ( INVERT_ # # AXIS # # _STEP_PIN , 0 ) ; \
2015-03-14 12:28:22 +01:00
}
2015-03-07 07:14:34 +01:00
2015-03-14 12:28:22 +01:00
APPLY_MOVEMENT ( x , X ) ;
APPLY_MOVEMENT ( y , Y ) ;
APPLY_MOVEMENT ( z , Z ) ;
# ifndef ADVANCE
APPLY_MOVEMENT ( e , E ) ;
2012-08-04 08:32:26 +02:00
# endif
2011-11-13 20:42:08 +01:00
2015-03-14 12:28:22 +01:00
# endif // CONFIG_STEPPERS_TOSHIBA
step_events_completed + + ;
if ( step_events_completed > = current_block - > step_event_count ) break ;
2011-11-13 20:42:08 +01:00
}
2015-03-28 10:31:51 +01:00
// Calculate new timer value
2011-11-13 20:42:08 +01:00
unsigned short timer ;
unsigned short step_rate ;
2011-12-04 12:40:18 +01:00
if ( step_events_completed < = ( unsigned long int ) current_block - > accelerate_until ) {
2013-08-01 15:06:39 +02:00
2011-11-13 20:42:08 +01:00
MultiU24X24toH16 ( acc_step_rate , acceleration_time , current_block - > acceleration_rate ) ;
acc_step_rate + = current_block - > initial_rate ;
2013-08-01 15:06:39 +02:00
2011-11-13 20:42:08 +01:00
// upper limit
2015-03-14 12:28:22 +01:00
if ( acc_step_rate > current_block - > nominal_rate )
2011-11-13 20:42:08 +01:00
acc_step_rate = current_block - > nominal_rate ;
// step_rate to timer interval
timer = calc_timer ( acc_step_rate ) ;
2011-11-25 15:32:50 +01:00
OCR1A = timer ;
acceleration_time + = timer ;
2011-11-13 20:42:08 +01:00
# ifdef ADVANCE
2011-12-02 17:45:05 +01:00
for ( int8_t i = 0 ; i < step_loops ; i + + ) {
advance + = advance_rate ;
}
2015-03-14 12:28:22 +01:00
//if (advance > current_block->advance) advance = current_block->advance;
2011-12-04 19:54:07 +01:00
// Do E steps + advance steps
2011-12-12 19:34:37 +01:00
e_steps [ current_block - > active_extruder ] + = ( ( advance > > 8 ) - old_advance ) ;
2013-08-01 15:06:39 +02:00
old_advance = advance > > 8 ;
2011-11-13 20:42:08 +01:00
# endif
2013-08-01 15:06:39 +02:00
}
else if ( step_events_completed > ( unsigned long int ) current_block - > decelerate_after ) {
2011-11-13 20:42:08 +01:00
MultiU24X24toH16 ( step_rate , deceleration_time , current_block - > acceleration_rate ) ;
2013-08-01 15:06:39 +02:00
2015-03-14 12:28:22 +01:00
if ( step_rate > acc_step_rate ) { // Check step_rate stays positive
2011-11-13 20:42:08 +01:00
step_rate = current_block - > final_rate ;
}
else {
step_rate = acc_step_rate - step_rate ; // Decelerate from aceleration end point.
}
// lower limit
2015-03-14 12:28:22 +01:00
if ( step_rate < current_block - > final_rate )
2011-11-13 20:42:08 +01:00
step_rate = current_block - > final_rate ;
// step_rate to timer interval
timer = calc_timer ( step_rate ) ;
2011-11-25 15:32:50 +01:00
OCR1A = timer ;
deceleration_time + = timer ;
2011-11-13 20:42:08 +01:00
# ifdef ADVANCE
2011-12-02 17:45:05 +01:00
for ( int8_t i = 0 ; i < step_loops ; i + + ) {
advance - = advance_rate ;
}
2015-03-14 12:28:22 +01:00
if ( advance < final_advance ) advance = final_advance ;
2011-12-04 19:54:07 +01:00
// Do E steps + advance steps
2011-12-12 19:34:37 +01:00
e_steps [ current_block - > active_extruder ] + = ( ( advance > > 8 ) - old_advance ) ;
2013-08-01 15:06:39 +02:00
old_advance = advance > > 8 ;
2011-11-13 20:42:08 +01:00
# endif //ADVANCE
}
else {
2011-11-25 15:32:50 +01:00
OCR1A = OCR1A_nominal ;
2013-03-15 09:03:53 +01:00
// ensure we're running at the correct step rate, even if we just came off an acceleration
step_loops = step_loops_nominal ;
2011-11-13 20:42:08 +01:00
}
2011-12-02 17:45:05 +01:00
2013-08-01 15:06:39 +02:00
// If current block is finished, reset pointer
2011-11-13 20:42:08 +01:00
if ( step_events_completed > = current_block - > step_event_count ) {
current_block = NULL ;
plan_discard_current_block ( ) ;
2013-08-01 15:06:39 +02:00
}
}
2011-11-13 20:42:08 +01:00
}
# ifdef ADVANCE
unsigned char old_OCR0A ;
// Timer interrupt for E. e_steps is set in the main routine;
// Timer 0 is shared with millies
ISR ( TIMER0_COMPA_vect )
{
2011-12-04 19:54:07 +01:00
old_OCR0A + = 52 ; // ~10kHz interrupt (250000 / 26 = 9615kHz)
2011-12-02 17:45:05 +01:00
OCR0A = old_OCR0A ;
2011-11-13 20:42:08 +01:00
// Set E direction (Depends on E direction + advance)
2011-12-12 19:34:37 +01:00
for ( unsigned char i = 0 ; i < 4 ; i + + ) {
if ( e_steps [ 0 ] ! = 0 ) {
2015-03-14 12:28:22 +01:00
E0_STEP_WRITE ( INVERT_E_STEP_PIN ) ;
2011-12-12 19:34:37 +01:00
if ( e_steps [ 0 ] < 0 ) {
2015-02-23 16:12:35 +01:00
E0_DIR_WRITE ( INVERT_E0_DIR ) ;
2011-12-12 19:34:37 +01:00
e_steps [ 0 ] + + ;
2015-02-23 16:12:35 +01:00
E0_STEP_WRITE ( ! INVERT_E_STEP_PIN ) ;
2013-08-01 15:06:39 +02:00
}
2011-12-12 19:34:37 +01:00
else if ( e_steps [ 0 ] > 0 ) {
2015-02-23 16:12:35 +01:00
E0_DIR_WRITE ( ! INVERT_E0_DIR ) ;
2011-12-12 19:34:37 +01:00
e_steps [ 0 ] - - ;
2015-02-23 16:12:35 +01:00
E0_STEP_WRITE ( ! INVERT_E_STEP_PIN ) ;
2011-12-12 19:34:37 +01:00
}
}
# if EXTRUDERS > 1
if ( e_steps [ 1 ] ! = 0 ) {
2015-02-23 16:12:35 +01:00
E1_STEP_WRITE ( INVERT_E_STEP_PIN ) ;
2011-12-12 19:34:37 +01:00
if ( e_steps [ 1 ] < 0 ) {
2015-02-23 16:12:35 +01:00
E1_DIR_WRITE ( INVERT_E1_DIR ) ;
2011-12-12 19:34:37 +01:00
e_steps [ 1 ] + + ;
2015-02-23 16:12:35 +01:00
E1_STEP_WRITE ( ! INVERT_E_STEP_PIN ) ;
2013-08-01 15:06:39 +02:00
}
2011-12-12 19:34:37 +01:00
else if ( e_steps [ 1 ] > 0 ) {
2015-02-23 16:12:35 +01:00
E1_DIR_WRITE ( ! INVERT_E1_DIR ) ;
2011-12-12 19:34:37 +01:00
e_steps [ 1 ] - - ;
2015-02-23 16:12:35 +01:00
E1_STEP_WRITE ( ! INVERT_E_STEP_PIN ) ;
2011-12-12 19:34:37 +01:00
}
}
# endif
# if EXTRUDERS > 2
if ( e_steps [ 2 ] ! = 0 ) {
2015-02-23 16:12:35 +01:00
E2_STEP_WRITE ( INVERT_E_STEP_PIN ) ;
2011-12-12 19:34:37 +01:00
if ( e_steps [ 2 ] < 0 ) {
2015-02-23 16:12:35 +01:00
E2_DIR_WRITE ( INVERT_E2_DIR ) ;
2011-12-12 19:34:37 +01:00
e_steps [ 2 ] + + ;
2015-02-23 16:12:35 +01:00
E2_STEP_WRITE ( ! INVERT_E_STEP_PIN ) ;
2013-08-01 15:06:39 +02:00
}
2011-12-12 19:34:37 +01:00
else if ( e_steps [ 2 ] > 0 ) {
2015-02-23 16:12:35 +01:00
E2_DIR_WRITE ( ! INVERT_E2_DIR ) ;
2011-12-12 19:34:37 +01:00
e_steps [ 2 ] - - ;
2015-02-23 16:12:35 +01:00
E2_STEP_WRITE ( ! INVERT_E_STEP_PIN ) ;
2011-12-12 19:34:37 +01:00
}
2011-12-02 17:45:05 +01:00
}
2011-12-12 19:34:37 +01:00
# endif
2015-01-23 23:13:06 +01:00
# if EXTRUDERS > 3
if ( e_steps [ 3 ] ! = 0 ) {
2015-02-23 16:12:35 +01:00
E3_STEP_WRITE ( INVERT_E_STEP_PIN ) ;
2015-01-23 23:13:06 +01:00
if ( e_steps [ 3 ] < 0 ) {
2015-02-23 16:12:35 +01:00
E3_DIR_WRITE ( INVERT_E3_DIR ) ;
2015-01-23 23:13:06 +01:00
e_steps [ 3 ] + + ;
2015-02-23 16:12:35 +01:00
E3_STEP_WRITE ( ! INVERT_E_STEP_PIN ) ;
2015-01-23 23:13:06 +01:00
}
else if ( e_steps [ 3 ] > 0 ) {
2015-02-23 16:12:35 +01:00
E3_DIR_WRITE ( ! INVERT_E3_DIR ) ;
2015-01-23 23:13:06 +01:00
e_steps [ 3 ] - - ;
2015-02-23 16:12:35 +01:00
E3_STEP_WRITE ( ! INVERT_E_STEP_PIN ) ;
2015-01-23 23:13:06 +01:00
}
}
# endif
2011-11-13 20:42:08 +01:00
}
}
# endif // ADVANCE
2015-03-14 12:28:22 +01:00
void st_init ( ) {
2012-08-30 09:16:57 +02:00
digipot_init ( ) ; //Initialize Digipot Motor Current
microstep_init ( ) ; //Initialize Microstepping Pins
2013-08-01 15:06:39 +02:00
2015-02-23 17:45:29 +01:00
// initialise TMC Steppers
# ifdef HAVE_TMCDRIVER
2015-03-14 12:28:22 +01:00
tmc_init ( ) ;
2015-02-23 17:45:29 +01:00
# endif
2015-02-27 12:43:23 +01:00
// initialise L6470 Steppers
# ifdef HAVE_L6470DRIVER
2015-03-14 12:28:22 +01:00
L6470_init ( ) ;
2015-02-27 12:43:23 +01:00
# endif
2015-03-14 12:28:22 +01:00
// Initialize Dir Pins
# if defined(X_DIR_PIN) && X_DIR_PIN >= 0
2015-02-23 16:12:35 +01:00
X_DIR_INIT ;
2011-11-13 20:42:08 +01:00
# endif
2015-03-14 12:28:22 +01:00
# if defined(X2_DIR_PIN) && X2_DIR_PIN >= 0
2015-02-23 16:12:35 +01:00
X2_DIR_INIT ;
2013-07-17 14:44:45 +02:00
# endif
2015-03-14 12:28:22 +01:00
# if defined(Y_DIR_PIN) && Y_DIR_PIN >= 0
2015-02-23 16:12:35 +01:00
Y_DIR_INIT ;
2015-03-14 12:28:22 +01:00
# if defined(Y_DUAL_STEPPER_DRIVERS) && defined(Y2_DIR_PIN) && Y2_DIR_PIN >= 0
Y2_DIR_INIT ;
# endif
2011-11-13 20:42:08 +01:00
# endif
2015-03-14 12:28:22 +01:00
# if defined(Z_DIR_PIN) && Z_DIR_PIN >= 0
2015-02-23 16:12:35 +01:00
Z_DIR_INIT ;
2015-03-14 12:28:22 +01:00
# if defined(Z_DUAL_STEPPER_DRIVERS) && defined(Z2_DIR_PIN) && Z2_DIR_PIN >= 0
2015-02-23 16:12:35 +01:00
Z2_DIR_INIT ;
2012-08-04 08:32:26 +02:00
# endif
2011-11-13 20:42:08 +01:00
# endif
2015-03-14 12:28:22 +01:00
# if defined(E0_DIR_PIN) && E0_DIR_PIN >= 0
2015-02-23 16:12:35 +01:00
E0_DIR_INIT ;
2011-12-06 05:33:33 +01:00
# endif
2015-03-14 12:28:22 +01:00
# if defined(E1_DIR_PIN) && E1_DIR_PIN >= 0
2015-02-23 16:12:35 +01:00
E1_DIR_INIT ;
2011-12-06 05:33:33 +01:00
# endif
2015-03-14 12:28:22 +01:00
# if defined(E2_DIR_PIN) && E2_DIR_PIN >= 0
2015-02-23 16:12:35 +01:00
E2_DIR_INIT ;
2011-11-13 20:42:08 +01:00
# endif
2015-03-14 12:28:22 +01:00
# if defined(E3_DIR_PIN) && E3_DIR_PIN >= 0
2015-02-23 16:12:35 +01:00
E3_DIR_INIT ;
2015-01-23 23:13:06 +01:00
# endif
2011-11-13 20:42:08 +01:00
//Initialize Enable Pins - steppers default to disabled.
2015-03-14 12:28:22 +01:00
# if defined(X_ENABLE_PIN) && X_ENABLE_PIN >= 0
2015-02-23 16:12:35 +01:00
X_ENABLE_INIT ;
2015-03-14 12:28:22 +01:00
if ( ! X_ENABLE_ON ) X_ENABLE_WRITE ( HIGH ) ;
2011-11-13 20:42:08 +01:00
# endif
2015-03-14 12:28:22 +01:00
# if defined(X2_ENABLE_PIN) && X2_ENABLE_PIN >= 0
2015-02-23 16:12:35 +01:00
X2_ENABLE_INIT ;
2015-03-14 12:28:22 +01:00
if ( ! X_ENABLE_ON ) X2_ENABLE_WRITE ( HIGH ) ;
2013-07-17 14:44:45 +02:00
# endif
2015-03-14 12:28:22 +01:00
# if defined(Y_ENABLE_PIN) && Y_ENABLE_PIN >= 0
2015-02-23 16:12:35 +01:00
Y_ENABLE_INIT ;
2015-03-14 12:28:22 +01:00
if ( ! Y_ENABLE_ON ) Y_ENABLE_WRITE ( HIGH ) ;
2013-09-17 20:19:20 +02:00
2015-03-14 12:28:22 +01:00
# if defined(Y_DUAL_STEPPER_DRIVERS) && defined(Y2_ENABLE_PIN) && Y2_ENABLE_PIN >= 0
2015-02-23 16:12:35 +01:00
Y2_ENABLE_INIT ;
2015-03-14 12:28:22 +01:00
if ( ! Y_ENABLE_ON ) Y2_ENABLE_WRITE ( HIGH ) ;
2013-09-17 20:19:20 +02:00
# endif
2011-11-13 20:42:08 +01:00
# endif
2015-03-14 12:28:22 +01:00
# if defined(Z_ENABLE_PIN) && Z_ENABLE_PIN >= 0
2015-02-23 16:12:35 +01:00
Z_ENABLE_INIT ;
2015-03-14 12:28:22 +01:00
if ( ! Z_ENABLE_ON ) Z_ENABLE_WRITE ( HIGH ) ;
2013-08-01 15:06:39 +02:00
2015-03-14 12:28:22 +01:00
# if defined(Z_DUAL_STEPPER_DRIVERS) && defined(Z2_ENABLE_PIN) && Z2_ENABLE_PIN >= 0
2015-02-23 16:12:35 +01:00
Z2_ENABLE_INIT ;
2015-03-14 12:28:22 +01:00
if ( ! Z_ENABLE_ON ) Z2_ENABLE_WRITE ( HIGH ) ;
2012-08-04 08:32:26 +02:00
# endif
2011-11-13 20:42:08 +01:00
# endif
2015-03-14 12:28:22 +01:00
# if defined(E0_ENABLE_PIN) && E0_ENABLE_PIN >= 0
2015-02-23 16:12:35 +01:00
E0_ENABLE_INIT ;
2015-03-14 12:28:22 +01:00
if ( ! E_ENABLE_ON ) E0_ENABLE_WRITE ( HIGH ) ;
2011-12-06 05:33:33 +01:00
# endif
2015-03-14 12:28:22 +01:00
# if defined(E1_ENABLE_PIN) && E1_ENABLE_PIN >= 0
2015-02-23 16:12:35 +01:00
E1_ENABLE_INIT ;
2015-03-14 12:28:22 +01:00
if ( ! E_ENABLE_ON ) E1_ENABLE_WRITE ( HIGH ) ;
2011-12-06 05:33:33 +01:00
# endif
2015-03-14 12:28:22 +01:00
# if defined(E2_ENABLE_PIN) && E2_ENABLE_PIN >= 0
2015-02-23 16:12:35 +01:00
E2_ENABLE_INIT ;
2015-03-14 12:28:22 +01:00
if ( ! E_ENABLE_ON ) E2_ENABLE_WRITE ( HIGH ) ;
2011-11-13 20:42:08 +01:00
# endif
2015-03-14 12:28:22 +01:00
# if defined(E3_ENABLE_PIN) && E3_ENABLE_PIN >= 0
2015-02-23 16:12:35 +01:00
E3_ENABLE_INIT ;
2015-03-14 12:28:22 +01:00
if ( ! E_ENABLE_ON ) E3_ENABLE_WRITE ( HIGH ) ;
2015-01-23 23:13:06 +01:00
# endif
2011-11-13 20:42:08 +01:00
//endstops and pullups
2013-08-01 15:06:39 +02:00
2015-03-14 12:28:22 +01:00
# if defined(X_MIN_PIN) && X_MIN_PIN >= 0
2013-08-01 15:06:39 +02:00
SET_INPUT ( X_MIN_PIN ) ;
2012-06-02 13:47:50 +02:00
# ifdef ENDSTOPPULLUP_XMIN
2011-11-13 20:42:08 +01:00
WRITE ( X_MIN_PIN , HIGH ) ;
# endif
2012-06-02 13:47:50 +02:00
# endif
2013-08-01 15:06:39 +02:00
2015-03-14 12:28:22 +01:00
# if defined(Y_MIN_PIN) && Y_MIN_PIN >= 0
2013-08-01 15:06:39 +02:00
SET_INPUT ( Y_MIN_PIN ) ;
2012-06-02 13:47:50 +02:00
# ifdef ENDSTOPPULLUP_YMIN
2011-11-13 20:42:08 +01:00
WRITE ( Y_MIN_PIN , HIGH ) ;
# endif
2012-06-02 13:47:50 +02:00
# endif
2013-08-01 15:06:39 +02:00
2015-03-14 12:28:22 +01:00
# if defined(Z_MIN_PIN) && Z_MIN_PIN >= 0
2013-08-01 15:06:39 +02:00
SET_INPUT ( Z_MIN_PIN ) ;
2012-06-02 13:47:50 +02:00
# ifdef ENDSTOPPULLUP_ZMIN
2011-11-13 20:42:08 +01:00
WRITE ( Z_MIN_PIN , HIGH ) ;
# endif
2012-06-02 13:47:50 +02:00
# endif
2013-08-01 15:06:39 +02:00
2015-03-14 12:28:22 +01:00
# if defined(X_MAX_PIN) && X_MAX_PIN >= 0
2013-08-01 15:06:39 +02:00
SET_INPUT ( X_MAX_PIN ) ;
2012-06-02 13:47:50 +02:00
# ifdef ENDSTOPPULLUP_XMAX
WRITE ( X_MAX_PIN , HIGH ) ;
2011-11-13 20:42:08 +01:00
# endif
2012-06-02 13:47:50 +02:00
# endif
2013-08-01 15:06:39 +02:00
2015-03-14 12:28:22 +01:00
# if defined(Y_MAX_PIN) && Y_MAX_PIN >= 0
2013-08-01 15:06:39 +02:00
SET_INPUT ( Y_MAX_PIN ) ;
2012-06-02 13:47:50 +02:00
# ifdef ENDSTOPPULLUP_YMAX
WRITE ( Y_MAX_PIN , HIGH ) ;
2011-11-13 20:42:08 +01:00
# endif
2012-06-02 13:47:50 +02:00
# endif
2013-08-01 15:06:39 +02:00
2015-03-14 12:28:22 +01:00
# if defined(Z_MAX_PIN) && Z_MAX_PIN >= 0
2013-08-01 15:06:39 +02:00
SET_INPUT ( Z_MAX_PIN ) ;
2012-06-02 13:47:50 +02:00
# ifdef ENDSTOPPULLUP_ZMAX
WRITE ( Z_MAX_PIN , HIGH ) ;
2011-11-13 20:42:08 +01:00
# endif
2012-06-02 13:47:50 +02:00
# endif
2013-08-01 15:06:39 +02:00
2015-03-24 18:06:44 +01:00
# if defined(Z2_MAX_PIN) && Z2_MAX_PIN >= 0
SET_INPUT ( Z2_MAX_PIN ) ;
# ifdef ENDSTOPPULLUP_ZMAX
WRITE ( Z2_MAX_PIN , HIGH ) ;
# endif
# endif
2015-03-28 10:31:51 +01:00
# if defined(Z_PROBE_PIN) && Z_PROBE_PIN >= 0
SET_INPUT ( Z_PROBE_PIN ) ;
# ifdef ENDSTOPPULLUP_ZPROBE
WRITE ( Z_PROBE_PIN , HIGH ) ;
# endif
# endif
2015-03-14 12:28:22 +01:00
# define AXIS_INIT(axis, AXIS, PIN) \
AXIS # # _STEP_INIT ; \
AXIS # # _STEP_WRITE ( INVERT_ # # PIN # # _STEP_PIN ) ; \
disable_ # # axis ( )
2011-11-13 20:42:08 +01:00
2015-03-14 12:28:22 +01:00
# define E_AXIS_INIT(NUM) AXIS_INIT(e## NUM, E## NUM, E)
// Initialize Step Pins
# if defined(X_STEP_PIN) && X_STEP_PIN >= 0
AXIS_INIT ( x , X , X ) ;
2013-08-01 15:06:39 +02:00
# endif
2015-03-14 12:28:22 +01:00
# if defined(X2_STEP_PIN) && X2_STEP_PIN >= 0
AXIS_INIT ( x , X2 , X ) ;
2013-08-01 15:06:39 +02:00
# endif
2015-03-14 12:28:22 +01:00
# if defined(Y_STEP_PIN) && Y_STEP_PIN >= 0
# if defined(Y_DUAL_STEPPER_DRIVERS) && defined(Y2_STEP_PIN) && Y2_STEP_PIN >= 0
2015-02-23 16:12:35 +01:00
Y2_STEP_INIT ;
Y2_STEP_WRITE ( INVERT_Y_STEP_PIN ) ;
2013-09-17 20:19:20 +02:00
# endif
2015-03-14 12:28:22 +01:00
AXIS_INIT ( y , Y , Y ) ;
2013-08-01 15:06:39 +02:00
# endif
2015-03-14 12:28:22 +01:00
# if defined(Z_STEP_PIN) && Z_STEP_PIN >= 0
# if defined(Z_DUAL_STEPPER_DRIVERS) && defined(Z2_STEP_PIN) && Z2_STEP_PIN >= 0
2015-02-23 16:12:35 +01:00
Z2_STEP_INIT ;
Z2_STEP_WRITE ( INVERT_Z_STEP_PIN ) ;
2012-08-04 08:32:26 +02:00
# endif
2015-03-14 12:28:22 +01:00
AXIS_INIT ( z , Z , Z ) ;
2013-08-01 15:06:39 +02:00
# endif
2015-03-14 12:28:22 +01:00
# if defined(E0_STEP_PIN) && E0_STEP_PIN >= 0
E_AXIS_INIT ( 0 ) ;
2013-08-01 15:06:39 +02:00
# endif
2015-03-14 12:28:22 +01:00
# if defined(E1_STEP_PIN) && E1_STEP_PIN >= 0
E_AXIS_INIT ( 1 ) ;
2013-08-01 15:06:39 +02:00
# endif
2015-03-14 12:28:22 +01:00
# if defined(E2_STEP_PIN) && E2_STEP_PIN >= 0
E_AXIS_INIT ( 2 ) ;
2013-08-01 15:06:39 +02:00
# endif
2015-03-14 12:28:22 +01:00
# if defined(E3_STEP_PIN) && E3_STEP_PIN >= 0
E_AXIS_INIT ( 3 ) ;
2015-01-23 23:13:06 +01:00
# endif
2011-11-13 20:42:08 +01:00
// waveform generation = 0100 = CTC
2015-03-14 12:28:22 +01:00
TCCR1B & = ~ BIT ( WGM13 ) ;
TCCR1B | = BIT ( WGM12 ) ;
TCCR1A & = ~ BIT ( WGM11 ) ;
TCCR1A & = ~ BIT ( WGM10 ) ;
2011-11-13 20:42:08 +01:00
// output mode = 00 (disconnected)
2013-08-01 15:06:39 +02:00
TCCR1A & = ~ ( 3 < < COM1A0 ) ;
TCCR1A & = ~ ( 3 < < COM1B0 ) ;
2012-03-07 23:58:35 +01:00
// Set the timer pre-scaler
// Generally we use a divider of 8, resulting in a 2MHz timer
// frequency on a 16MHz MCU. If you are going to change this, be
// sure to regenerate speed_lookuptable.h with
// create_speed_lookuptable.py
TCCR1B = ( TCCR1B & ~ ( 0x07 < < CS10 ) ) | ( 2 < < CS10 ) ;
2011-11-13 20:42:08 +01:00
OCR1A = 0x4000 ;
2011-11-18 18:59:17 +01:00
TCNT1 = 0 ;
2013-08-01 15:06:39 +02:00
ENABLE_STEPPER_DRIVER_INTERRUPT ( ) ;
2011-11-13 20:42:08 +01:00
# ifdef ADVANCE
2015-03-14 12:28:22 +01:00
# if defined(TCCR0A) && defined(WGM01)
TCCR0A & = ~ BIT ( WGM01 ) ;
TCCR0A & = ~ BIT ( WGM00 ) ;
# endif
2011-12-12 19:34:37 +01:00
e_steps [ 0 ] = 0 ;
e_steps [ 1 ] = 0 ;
e_steps [ 2 ] = 0 ;
2015-01-23 23:13:06 +01:00
e_steps [ 3 ] = 0 ;
2015-03-14 12:28:22 +01:00
TIMSK0 | = BIT ( OCIE0A ) ;
2011-11-13 20:42:08 +01:00
# endif //ADVANCE
2013-08-01 15:06:39 +02:00
2012-04-15 19:17:33 +02:00
enable_endstops ( true ) ; // Start with endstops active. After homing they can be disabled
2011-11-13 20:42:08 +01:00
sei ( ) ;
}
2011-12-09 12:32:31 +01:00
2011-11-13 20:42:08 +01:00
// Block until all buffered steps are executed
2015-03-14 12:28:22 +01:00
void st_synchronize ( ) {
while ( blocks_queued ( ) ) {
2011-11-13 20:42:08 +01:00
manage_heater ( ) ;
2012-08-21 14:48:29 +02:00
manage_inactivity ( ) ;
2012-12-03 12:52:00 +01:00
lcd_update ( ) ;
2011-12-09 12:32:31 +01:00
}
2011-11-13 20:46:44 +01:00
}
2011-11-20 14:50:08 +01:00
2015-03-14 12:28:22 +01:00
void st_set_position ( const long & x , const long & y , const long & z , const long & e ) {
2011-11-20 14:50:08 +01:00
CRITICAL_SECTION_START ;
count_position [ X_AXIS ] = x ;
count_position [ Y_AXIS ] = y ;
count_position [ Z_AXIS ] = z ;
count_position [ E_AXIS ] = e ;
CRITICAL_SECTION_END ;
}
2015-03-14 12:28:22 +01:00
void st_set_e_position ( const long & e ) {
2011-11-25 13:43:06 +01:00
CRITICAL_SECTION_START ;
count_position [ E_AXIS ] = e ;
CRITICAL_SECTION_END ;
}
2015-03-14 12:28:22 +01:00
long st_get_position ( uint8_t axis ) {
2011-11-20 14:50:08 +01:00
long count_pos ;
CRITICAL_SECTION_START ;
count_pos = count_position [ axis ] ;
CRITICAL_SECTION_END ;
return count_pos ;
}
2011-11-26 11:50:23 +01:00
2013-09-29 18:20:06 +02:00
# ifdef ENABLE_AUTO_BED_LEVELING
2015-03-14 12:28:22 +01:00
float st_get_position_mm ( uint8_t axis ) {
float steper_position_in_steps = st_get_position ( axis ) ;
return steper_position_in_steps / axis_steps_per_unit [ axis ] ;
}
2013-09-29 18:20:06 +02:00
# endif // ENABLE_AUTO_BED_LEVELING
2015-03-14 12:28:22 +01:00
void finishAndDisableSteppers ( ) {
2013-08-01 15:06:39 +02:00
st_synchronize ( ) ;
disable_x ( ) ;
disable_y ( ) ;
disable_z ( ) ;
disable_e0 ( ) ;
disable_e1 ( ) ;
disable_e2 ( ) ;
2015-01-23 23:13:06 +01:00
disable_e3 ( ) ;
2011-11-26 11:50:23 +01:00
}
2011-12-11 22:10:06 +01:00
2015-03-14 12:28:22 +01:00
void quickStop ( ) {
2015-03-19 18:16:18 +01:00
cleaning_buffer_counter = 5000 ;
2011-12-11 22:10:06 +01:00
DISABLE_STEPPER_DRIVER_INTERRUPT ( ) ;
2015-03-14 12:28:22 +01:00
while ( blocks_queued ( ) ) plan_discard_current_block ( ) ;
2012-03-03 20:40:46 +01:00
current_block = NULL ;
2011-12-11 22:10:06 +01:00
ENABLE_STEPPER_DRIVER_INTERRUPT ( ) ;
}
Add the socalled "Babystepping" feature.
It is a realtime control over the head position via the LCD menu system that works _while_ printing.
Using it, one can e.g. tune the z-position in realtime, while printing the first layer.
Also, lost steps can be manually added/removed, but thats not the prime feature.
Stuff is placed into the Tune->Babystep *
It is not possible to have realtime control via gcode sending due to the buffering, so I did not include a gcode yet. However, it could be added, but it movements will not be realtime then.
Historically, a very similar thing was implemented for the "Kaamermaker" project, while Joris was babysitting his offspring, hence the name.
say goodby to fuddling around with the z-axis.
2013-10-06 21:14:51 +02:00
# ifdef BABYSTEPPING
2015-03-14 12:28:22 +01:00
// MUST ONLY BE CALLED BY AN ISR,
// No other ISR should ever interrupt this!
void babystep ( const uint8_t axis , const bool direction ) {
# define BABYSTEP_AXIS(axis, AXIS, INVERT) { \
enable_ # # axis ( ) ; \
uint8_t old_pin = AXIS # # _DIR_READ ; \
2015-03-15 02:31:25 +01:00
AXIS # # _APPLY_DIR ( INVERT_ # # AXIS # # _DIR ^ direction ^ INVERT , true ) ; \
AXIS # # _APPLY_STEP ( ! INVERT_ # # AXIS # # _STEP_PIN , true ) ; \
2015-03-14 12:28:22 +01:00
_delay_us ( 1U ) ; \
2015-03-15 02:31:25 +01:00
AXIS # # _APPLY_STEP ( INVERT_ # # AXIS # # _STEP_PIN , true ) ; \
AXIS # # _APPLY_DIR ( old_pin , true ) ; \
2015-03-14 12:28:22 +01:00
}
Add the socalled "Babystepping" feature.
It is a realtime control over the head position via the LCD menu system that works _while_ printing.
Using it, one can e.g. tune the z-position in realtime, while printing the first layer.
Also, lost steps can be manually added/removed, but thats not the prime feature.
Stuff is placed into the Tune->Babystep *
It is not possible to have realtime control via gcode sending due to the buffering, so I did not include a gcode yet. However, it could be added, but it movements will not be realtime then.
Historically, a very similar thing was implemented for the "Kaamermaker" project, while Joris was babysitting his offspring, hence the name.
say goodby to fuddling around with the z-axis.
2013-10-06 21:14:51 +02:00
2015-03-14 12:28:22 +01:00
switch ( axis ) {
Add the socalled "Babystepping" feature.
It is a realtime control over the head position via the LCD menu system that works _while_ printing.
Using it, one can e.g. tune the z-position in realtime, while printing the first layer.
Also, lost steps can be manually added/removed, but thats not the prime feature.
Stuff is placed into the Tune->Babystep *
It is not possible to have realtime control via gcode sending due to the buffering, so I did not include a gcode yet. However, it could be added, but it movements will not be realtime then.
Historically, a very similar thing was implemented for the "Kaamermaker" project, while Joris was babysitting his offspring, hence the name.
say goodby to fuddling around with the z-axis.
2013-10-06 21:14:51 +02:00
2015-03-14 12:28:22 +01:00
case X_AXIS :
BABYSTEP_AXIS ( x , X , false ) ;
break ;
Add the socalled "Babystepping" feature.
It is a realtime control over the head position via the LCD menu system that works _while_ printing.
Using it, one can e.g. tune the z-position in realtime, while printing the first layer.
Also, lost steps can be manually added/removed, but thats not the prime feature.
Stuff is placed into the Tune->Babystep *
It is not possible to have realtime control via gcode sending due to the buffering, so I did not include a gcode yet. However, it could be added, but it movements will not be realtime then.
Historically, a very similar thing was implemented for the "Kaamermaker" project, while Joris was babysitting his offspring, hence the name.
say goodby to fuddling around with the z-axis.
2013-10-06 21:14:51 +02:00
2015-03-14 12:28:22 +01:00
case Y_AXIS :
BABYSTEP_AXIS ( y , Y , false ) ;
break ;
case Z_AXIS : {
2015-01-23 12:24:45 +01:00
2015-03-14 12:28:22 +01:00
# ifndef DELTA
Add the socalled "Babystepping" feature.
It is a realtime control over the head position via the LCD menu system that works _while_ printing.
Using it, one can e.g. tune the z-position in realtime, while printing the first layer.
Also, lost steps can be manually added/removed, but thats not the prime feature.
Stuff is placed into the Tune->Babystep *
It is not possible to have realtime control via gcode sending due to the buffering, so I did not include a gcode yet. However, it could be added, but it movements will not be realtime then.
Historically, a very similar thing was implemented for the "Kaamermaker" project, while Joris was babysitting his offspring, hence the name.
say goodby to fuddling around with the z-axis.
2013-10-06 21:14:51 +02:00
2015-03-14 12:28:22 +01:00
BABYSTEP_AXIS ( z , Z , BABYSTEP_INVERT_Z ) ;
Add the socalled "Babystepping" feature.
It is a realtime control over the head position via the LCD menu system that works _while_ printing.
Using it, one can e.g. tune the z-position in realtime, while printing the first layer.
Also, lost steps can be manually added/removed, but thats not the prime feature.
Stuff is placed into the Tune->Babystep *
It is not possible to have realtime control via gcode sending due to the buffering, so I did not include a gcode yet. However, it could be added, but it movements will not be realtime then.
Historically, a very similar thing was implemented for the "Kaamermaker" project, while Joris was babysitting his offspring, hence the name.
say goodby to fuddling around with the z-axis.
2013-10-06 21:14:51 +02:00
2015-03-14 12:28:22 +01:00
# else // DELTA
2015-01-23 12:24:45 +01:00
2015-03-14 12:28:22 +01:00
bool z_direction = direction ^ BABYSTEP_INVERT_Z ;
2015-01-23 12:24:45 +01:00
2015-03-14 12:28:22 +01:00
enable_x ( ) ;
enable_y ( ) ;
enable_z ( ) ;
uint8_t old_x_dir_pin = X_DIR_READ ,
old_y_dir_pin = Y_DIR_READ ,
old_z_dir_pin = Z_DIR_READ ;
//setup new step
X_DIR_WRITE ( INVERT_X_DIR ^ z_direction ) ;
Y_DIR_WRITE ( INVERT_Y_DIR ^ z_direction ) ;
Z_DIR_WRITE ( INVERT_Z_DIR ^ z_direction ) ;
//perform step
X_STEP_WRITE ( ! INVERT_X_STEP_PIN ) ;
Y_STEP_WRITE ( ! INVERT_Y_STEP_PIN ) ;
Z_STEP_WRITE ( ! INVERT_Z_STEP_PIN ) ;
_delay_us ( 1U ) ;
X_STEP_WRITE ( INVERT_X_STEP_PIN ) ;
Y_STEP_WRITE ( INVERT_Y_STEP_PIN ) ;
Z_STEP_WRITE ( INVERT_Z_STEP_PIN ) ;
//get old pin state back.
X_DIR_WRITE ( old_x_dir_pin ) ;
Y_DIR_WRITE ( old_y_dir_pin ) ;
Z_DIR_WRITE ( old_z_dir_pin ) ;
Add the socalled "Babystepping" feature.
It is a realtime control over the head position via the LCD menu system that works _while_ printing.
Using it, one can e.g. tune the z-position in realtime, while printing the first layer.
Also, lost steps can be manually added/removed, but thats not the prime feature.
Stuff is placed into the Tune->Babystep *
It is not possible to have realtime control via gcode sending due to the buffering, so I did not include a gcode yet. However, it could be added, but it movements will not be realtime then.
Historically, a very similar thing was implemented for the "Kaamermaker" project, while Joris was babysitting his offspring, hence the name.
say goodby to fuddling around with the z-axis.
2013-10-06 21:14:51 +02:00
2015-03-14 12:28:22 +01:00
# endif
Add the socalled "Babystepping" feature.
It is a realtime control over the head position via the LCD menu system that works _while_ printing.
Using it, one can e.g. tune the z-position in realtime, while printing the first layer.
Also, lost steps can be manually added/removed, but thats not the prime feature.
Stuff is placed into the Tune->Babystep *
It is not possible to have realtime control via gcode sending due to the buffering, so I did not include a gcode yet. However, it could be added, but it movements will not be realtime then.
Historically, a very similar thing was implemented for the "Kaamermaker" project, while Joris was babysitting his offspring, hence the name.
say goodby to fuddling around with the z-axis.
2013-10-06 21:14:51 +02:00
2015-03-14 12:28:22 +01:00
} break ;
default : break ;
}
Add the socalled "Babystepping" feature.
It is a realtime control over the head position via the LCD menu system that works _while_ printing.
Using it, one can e.g. tune the z-position in realtime, while printing the first layer.
Also, lost steps can be manually added/removed, but thats not the prime feature.
Stuff is placed into the Tune->Babystep *
It is not possible to have realtime control via gcode sending due to the buffering, so I did not include a gcode yet. However, it could be added, but it movements will not be realtime then.
Historically, a very similar thing was implemented for the "Kaamermaker" project, while Joris was babysitting his offspring, hence the name.
say goodby to fuddling around with the z-axis.
2013-10-06 21:14:51 +02:00
}
2013-10-07 09:14:04 +02:00
Add the socalled "Babystepping" feature.
It is a realtime control over the head position via the LCD menu system that works _while_ printing.
Using it, one can e.g. tune the z-position in realtime, while printing the first layer.
Also, lost steps can be manually added/removed, but thats not the prime feature.
Stuff is placed into the Tune->Babystep *
It is not possible to have realtime control via gcode sending due to the buffering, so I did not include a gcode yet. However, it could be added, but it movements will not be realtime then.
Historically, a very similar thing was implemented for the "Kaamermaker" project, while Joris was babysitting his offspring, hence the name.
say goodby to fuddling around with the z-axis.
2013-10-06 21:14:51 +02:00
# endif //BABYSTEPPING
2015-03-14 12:28:22 +01:00
// From Arduino DigitalPotControl example
void digitalPotWrite ( int address , int value ) {
# if HAS_DIGIPOTSS
2012-08-30 09:16:57 +02:00
digitalWrite ( DIGIPOTSS_PIN , LOW ) ; // take the SS pin low to select the chip
SPI . transfer ( address ) ; // send in the address and value via SPI:
SPI . transfer ( value ) ;
digitalWrite ( DIGIPOTSS_PIN , HIGH ) ; // take the SS pin high to de-select the chip:
//delay(10);
# endif
}
2015-03-14 12:28:22 +01:00
// Initialize Digipot Motor Current
void digipot_init ( ) {
# if HAS_DIGIPOTSS
2012-08-30 09:16:57 +02:00
const uint8_t digipot_motor_current [ ] = DIGIPOT_MOTOR_CURRENT ;
2013-08-01 15:06:39 +02:00
SPI . begin ( ) ;
pinMode ( DIGIPOTSS_PIN , OUTPUT ) ;
2015-03-14 12:28:22 +01:00
for ( int i = 0 ; i < = 4 ; i + + ) {
2012-08-30 09:16:57 +02:00
//digitalPotWrite(digipot_ch[i], digipot_motor_current[i]);
digipot_current ( i , digipot_motor_current [ i ] ) ;
2015-03-14 12:28:22 +01:00
}
2012-08-30 09:16:57 +02:00
# endif
2014-01-06 11:05:02 +01:00
# ifdef MOTOR_CURRENT_PWM_XY_PIN
pinMode ( MOTOR_CURRENT_PWM_XY_PIN , OUTPUT ) ;
pinMode ( MOTOR_CURRENT_PWM_Z_PIN , OUTPUT ) ;
pinMode ( MOTOR_CURRENT_PWM_E_PIN , OUTPUT ) ;
digipot_current ( 0 , motor_current_setting [ 0 ] ) ;
digipot_current ( 1 , motor_current_setting [ 1 ] ) ;
digipot_current ( 2 , motor_current_setting [ 2 ] ) ;
//Set timer5 to 31khz so the PWM of the motor power is as constant as possible. (removes a buzzing noise)
TCCR5B = ( TCCR5B & ~ ( _BV ( CS50 ) | _BV ( CS51 ) | _BV ( CS52 ) ) ) | _BV ( CS50 ) ;
# endif
2012-08-30 09:16:57 +02:00
}
2015-03-14 12:28:22 +01:00
void digipot_current ( uint8_t driver , int current ) {
# if HAS_DIGIPOTSS
2012-08-30 09:16:57 +02:00
const uint8_t digipot_ch [ ] = DIGIPOT_CHANNELS ;
digitalPotWrite ( digipot_ch [ driver ] , current ) ;
# endif
2014-01-06 11:05:02 +01:00
# ifdef MOTOR_CURRENT_PWM_XY_PIN
2015-03-14 12:28:22 +01:00
switch ( driver ) {
case 0 : analogWrite ( MOTOR_CURRENT_PWM_XY_PIN , 255L * current / MOTOR_CURRENT_PWM_RANGE ) ; break ;
case 1 : analogWrite ( MOTOR_CURRENT_PWM_Z_PIN , 255L * current / MOTOR_CURRENT_PWM_RANGE ) ; break ;
case 2 : analogWrite ( MOTOR_CURRENT_PWM_E_PIN , 255L * current / MOTOR_CURRENT_PWM_RANGE ) ; break ;
}
2014-01-06 11:05:02 +01:00
# endif
2012-08-30 09:16:57 +02:00
}
2015-03-14 12:28:22 +01:00
void microstep_init ( ) {
# if defined(E1_MS1_PIN) && E1_MS1_PIN >= 0
pinMode ( E1_MS1_PIN , OUTPUT ) ;
pinMode ( E1_MS2_PIN , OUTPUT ) ;
2014-04-25 06:57:11 +02:00
# endif
2015-03-14 12:28:22 +01:00
# if defined(X_MS1_PIN) && X_MS1_PIN >= 0
pinMode ( X_MS1_PIN , OUTPUT ) ;
pinMode ( X_MS2_PIN , OUTPUT ) ;
pinMode ( Y_MS1_PIN , OUTPUT ) ;
pinMode ( Y_MS2_PIN , OUTPUT ) ;
pinMode ( Z_MS1_PIN , OUTPUT ) ;
pinMode ( Z_MS2_PIN , OUTPUT ) ;
pinMode ( E0_MS1_PIN , OUTPUT ) ;
pinMode ( E0_MS2_PIN , OUTPUT ) ;
2015-03-27 04:07:17 +01:00
const uint8_t microstep_modes [ ] = MICROSTEP_MODES ;
2015-03-29 05:33:21 +02:00
for ( uint16_t i = 0 ; i < sizeof ( microstep_modes ) / sizeof ( microstep_modes [ 0 ] ) ; i + + )
2015-03-27 08:32:58 +01:00
microstep_mode ( i , microstep_modes [ i ] ) ;
2012-08-30 09:16:57 +02:00
# endif
}
2015-03-14 12:28:22 +01:00
void microstep_ms ( uint8_t driver , int8_t ms1 , int8_t ms2 ) {
if ( ms1 > = 0 ) switch ( driver ) {
case 0 : digitalWrite ( X_MS1_PIN , ms1 ) ; break ;
case 1 : digitalWrite ( Y_MS1_PIN , ms1 ) ; break ;
case 2 : digitalWrite ( Z_MS1_PIN , ms1 ) ; break ;
case 3 : digitalWrite ( E0_MS1_PIN , ms1 ) ; break ;
# if defined(E1_MS1_PIN) && E1_MS1_PIN >= 0
case 4 : digitalWrite ( E1_MS1_PIN , ms1 ) ; break ;
2014-04-25 06:57:11 +02:00
# endif
2012-08-30 09:16:57 +02:00
}
2015-03-14 12:28:22 +01:00
if ( ms2 > = 0 ) switch ( driver ) {
case 0 : digitalWrite ( X_MS2_PIN , ms2 ) ; break ;
case 1 : digitalWrite ( Y_MS2_PIN , ms2 ) ; break ;
case 2 : digitalWrite ( Z_MS2_PIN , ms2 ) ; break ;
case 3 : digitalWrite ( E0_MS2_PIN , ms2 ) ; break ;
# if defined(E1_MS2_PIN) && E1_MS2_PIN >= 0
case 4 : digitalWrite ( E1_MS2_PIN , ms2 ) ; break ;
2014-04-25 06:57:11 +02:00
# endif
2012-08-30 09:16:57 +02:00
}
}
2015-03-14 12:28:22 +01:00
void microstep_mode ( uint8_t driver , uint8_t stepping_mode ) {
switch ( stepping_mode ) {
2012-08-30 09:16:57 +02:00
case 1 : microstep_ms ( driver , MICROSTEP1 ) ; break ;
case 2 : microstep_ms ( driver , MICROSTEP2 ) ; break ;
case 4 : microstep_ms ( driver , MICROSTEP4 ) ; break ;
case 8 : microstep_ms ( driver , MICROSTEP8 ) ; break ;
case 16 : microstep_ms ( driver , MICROSTEP16 ) ; break ;
}
}
2015-03-14 12:28:22 +01:00
void microstep_readings ( ) {
SERIAL_PROTOCOLPGM ( " MS1,MS2 Pins \n " ) ;
SERIAL_PROTOCOLPGM ( " X: " ) ;
SERIAL_PROTOCOL ( digitalRead ( X_MS1_PIN ) ) ;
SERIAL_PROTOCOLLN ( digitalRead ( X_MS2_PIN ) ) ;
SERIAL_PROTOCOLPGM ( " Y: " ) ;
SERIAL_PROTOCOL ( digitalRead ( Y_MS1_PIN ) ) ;
SERIAL_PROTOCOLLN ( digitalRead ( Y_MS2_PIN ) ) ;
SERIAL_PROTOCOLPGM ( " Z: " ) ;
SERIAL_PROTOCOL ( digitalRead ( Z_MS1_PIN ) ) ;
SERIAL_PROTOCOLLN ( digitalRead ( Z_MS2_PIN ) ) ;
SERIAL_PROTOCOLPGM ( " E0: " ) ;
SERIAL_PROTOCOL ( digitalRead ( E0_MS1_PIN ) ) ;
SERIAL_PROTOCOLLN ( digitalRead ( E0_MS2_PIN ) ) ;
# if defined(E1_MS1_PIN) && E1_MS1_PIN >= 0
SERIAL_PROTOCOLPGM ( " E1: " ) ;
SERIAL_PROTOCOL ( digitalRead ( E1_MS1_PIN ) ) ;
SERIAL_PROTOCOLLN ( digitalRead ( E1_MS2_PIN ) ) ;
# endif
2012-08-30 09:16:57 +02:00
}
2015-03-24 18:06:44 +01:00
# ifdef Z_DUAL_ENDSTOPS
void In_Homing_Process ( bool state ) { performing_homing = state ; }
void Lock_z_motor ( bool state ) { locked_z_motor = state ; }
void Lock_z2_motor ( bool state ) { locked_z2_motor = state ; }
# endif