2017-09-06 11:28:31 +00:00
|
|
|
/**
|
|
|
|
* Marlin 3D Printer Firmware
|
2019-06-28 04:57:50 +00:00
|
|
|
* Copyright (c) 2019 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
2017-09-06 11:28:31 +00:00
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
2019-06-28 04:57:50 +00:00
|
|
|
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
|
2017-09-06 11:28:31 +00:00
|
|
|
*
|
|
|
|
* This program 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.
|
|
|
|
*
|
|
|
|
* This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
2018-10-10 14:45:20 +00:00
|
|
|
#pragma once
|
2017-09-06 11:28:31 +00:00
|
|
|
|
2018-10-10 14:45:20 +00:00
|
|
|
#include "../inc/MarlinConfigPre.h"
|
2017-09-06 11:28:31 +00:00
|
|
|
|
2018-10-17 16:11:41 +00:00
|
|
|
#if EXTRUDERS > 1
|
|
|
|
|
|
|
|
typedef struct {
|
2018-11-07 03:52:20 +00:00
|
|
|
#if ENABLED(TOOLCHANGE_FILAMENT_SWAP)
|
2018-10-21 07:56:31 +00:00
|
|
|
float swap_length;
|
|
|
|
int16_t prime_speed, retract_speed;
|
2018-11-07 03:52:20 +00:00
|
|
|
#endif
|
|
|
|
#if ENABLED(TOOLCHANGE_PARK)
|
|
|
|
struct { float x, y; } change_point;
|
2018-10-17 16:11:41 +00:00
|
|
|
#endif
|
2018-10-21 07:56:31 +00:00
|
|
|
float z_raise;
|
2018-10-17 16:11:41 +00:00
|
|
|
} toolchange_settings_t;
|
|
|
|
|
|
|
|
extern toolchange_settings_t toolchange_settings;
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2018-05-18 18:16:59 +00:00
|
|
|
#if DO_SWITCH_EXTRUDER
|
2017-09-06 11:28:31 +00:00
|
|
|
void move_extruder_servo(const uint8_t e);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if ENABLED(SWITCHING_NOZZLE)
|
2019-02-04 06:19:56 +00:00
|
|
|
#if SWITCHING_NOZZLE_TWO_SERVOS
|
|
|
|
void lower_nozzle(const uint8_t e);
|
|
|
|
void raise_nozzle(const uint8_t e);
|
|
|
|
#else
|
|
|
|
void move_nozzle_servo(const uint8_t angle_index);
|
|
|
|
#endif
|
2017-09-06 11:28:31 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if ENABLED(PARKING_EXTRUDER)
|
|
|
|
|
|
|
|
#if ENABLED(PARKING_EXTRUDER_SOLENOIDS_INVERT)
|
|
|
|
#define PE_MAGNET_ON_STATE !PARKING_EXTRUDER_SOLENOIDS_PINS_ACTIVE
|
|
|
|
#else
|
|
|
|
#define PE_MAGNET_ON_STATE PARKING_EXTRUDER_SOLENOIDS_PINS_ACTIVE
|
|
|
|
#endif
|
|
|
|
|
2019-02-06 12:30:53 +00:00
|
|
|
void pe_set_solenoid(const uint8_t extruder_num, const uint8_t state);
|
2017-09-06 11:28:31 +00:00
|
|
|
|
2019-02-06 12:30:53 +00:00
|
|
|
inline void pe_activate_solenoid(const uint8_t extruder_num) { pe_set_solenoid(extruder_num, PE_MAGNET_ON_STATE); }
|
|
|
|
inline void pe_deactivate_solenoid(const uint8_t extruder_num) { pe_set_solenoid(extruder_num, !PE_MAGNET_ON_STATE); }
|
2017-09-06 11:28:31 +00:00
|
|
|
|
2019-02-06 12:30:53 +00:00
|
|
|
void pe_solenoid_init();
|
2017-09-18 06:05:44 +00:00
|
|
|
|
2019-02-06 12:30:53 +00:00
|
|
|
#elif ENABLED(MAGNETIC_PARKING_EXTRUDER)
|
|
|
|
|
|
|
|
typedef struct MPESettings {
|
|
|
|
float parking_xpos[2], // M951 L R
|
|
|
|
grab_distance, // M951 I
|
|
|
|
slow_feedrate, // M951 J
|
|
|
|
fast_feedrate, // M951 H
|
|
|
|
travel_distance, // M951 D
|
|
|
|
compensation_factor; // M951 C
|
|
|
|
} mpe_settings_t;
|
|
|
|
|
|
|
|
extern mpe_settings_t mpe_settings;
|
|
|
|
|
|
|
|
void mpe_settings_init();
|
|
|
|
|
|
|
|
#endif
|
2017-09-06 11:28:31 +00:00
|
|
|
|
2018-10-07 22:06:14 +00:00
|
|
|
#if ENABLED(SINGLENOZZLE)
|
|
|
|
extern uint16_t singlenozzle_temp[EXTRUDERS];
|
|
|
|
#if FAN_COUNT > 0
|
|
|
|
extern uint8_t singlenozzle_fan_speed[EXTRUDERS];
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2017-09-06 11:28:31 +00:00
|
|
|
/**
|
|
|
|
* Perform a tool-change, which may result in moving the
|
|
|
|
* previous tool out of the way and the new tool into place.
|
|
|
|
*/
|
2019-06-24 01:00:48 +00:00
|
|
|
void tool_change(const uint8_t tmp_extruder, bool no_move=false);
|