|
|
@ -177,6 +177,10 @@ float extruder_offset[2][EXTRUDERS] = { |
|
|
|
#endif |
|
|
|
uint8_t active_extruder = 0; |
|
|
|
int fanSpeed=0; |
|
|
|
#ifdef SERVO_ENDSTOPS |
|
|
|
int servo_endstops[] = SERVO_ENDSTOPS; |
|
|
|
int servo_endstop_angles[] = SERVO_ENDSTOP_ANGLES; |
|
|
|
#endif |
|
|
|
#ifdef BARICUDA |
|
|
|
int ValvePressure=0; |
|
|
|
int EtoPPressure=0; |
|
|
@ -351,6 +355,16 @@ void servo_init() |
|
|
|
#if (NUM_SERVOS >= 5) |
|
|
|
#error "TODO: enter initalisation code for more servos" |
|
|
|
#endif |
|
|
|
|
|
|
|
// Set position of Servo Endstops that are defined
|
|
|
|
#ifdef SERVO_ENDSTOPS |
|
|
|
for(int8_t i = 0; i < 3; i++) |
|
|
|
{ |
|
|
|
if(servo_endstops[i] > -1) { |
|
|
|
servos[servo_endstops[i]].write(servo_endstop_angles[i * 2 + 1]); |
|
|
|
} |
|
|
|
} |
|
|
|
#endif |
|
|
|
} |
|
|
|
|
|
|
|
void setup() |
|
|
@ -664,11 +678,16 @@ static void axis_is_at_home(int axis) { |
|
|
|
static void homeaxis(int axis) { |
|
|
|
#define HOMEAXIS_DO(LETTER) \ |
|
|
|
((LETTER##_MIN_PIN > -1 && LETTER##_HOME_DIR==-1) || (LETTER##_MAX_PIN > -1 && LETTER##_HOME_DIR==1)) |
|
|
|
|
|
|
|
if (axis==X_AXIS ? HOMEAXIS_DO(X) : |
|
|
|
axis==Y_AXIS ? HOMEAXIS_DO(Y) : |
|
|
|
axis==Z_AXIS ? HOMEAXIS_DO(Z) : |
|
|
|
0) { |
|
|
|
|
|
|
|
// Engage Servo endstop if enabled
|
|
|
|
#ifdef SERVO_ENDSTOPS[axis] > -1 |
|
|
|
servos[servo_endstops[axis]].write(servo_endstop_angles[axis * 2]); |
|
|
|
#endif |
|
|
|
|
|
|
|
current_position[axis] = 0; |
|
|
|
plan_set_position(current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS], current_position[E_AXIS]); |
|
|
|
destination[axis] = 1.5 * max_length(axis) * home_dir(axis); |
|
|
@ -691,6 +710,11 @@ static void homeaxis(int axis) { |
|
|
|
destination[axis] = current_position[axis]; |
|
|
|
feedrate = 0.0; |
|
|
|
endstops_hit_on_purpose(); |
|
|
|
|
|
|
|
// Retract Servo endstop if enabled
|
|
|
|
#ifdef SERVO_ENDSTOPS[axis] > -1 |
|
|
|
servos[servo_endstops[axis]].write(servo_endstop_angles[axis * 2 + 1]); |
|
|
|
#endif |
|
|
|
} |
|
|
|
} |
|
|
|
#define HOMEAXIS(LETTER) homeaxis(LETTER##_AXIS) |
|
|
@ -2281,4 +2305,4 @@ bool setTargetedHotend(int code){ |
|
|
|
} |
|
|
|
} |
|
|
|
return false; |
|
|
|
} |
|
|
|
} |