2016-03-25 07:19:46 +01:00
|
|
|
/**
|
2016-03-24 19:01:20 +01:00
|
|
|
* Marlin 3D Printer Firmware
|
2020-02-03 15:00:57 +01:00
|
|
|
* Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
2016-03-24 19:01:20 +01:00
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
2019-06-28 06:57:50 +02:00
|
|
|
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
|
2016-03-24 19:01:20 +01: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/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2015-05-17 10:44:53 +02:00
|
|
|
/**
|
2016-04-27 16:15:20 +02:00
|
|
|
* stepper.cpp - A singleton object to execute motion plans using stepper motors
|
2015-05-17 10:44:53 +02:00
|
|
|
* Marlin Firmware
|
|
|
|
*
|
|
|
|
* Derived from 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/>.
|
|
|
|
*/
|
2011-11-13 20:42:08 +01:00
|
|
|
|
2018-05-12 15:34:04 +02:00
|
|
|
/**
|
|
|
|
* Timer calculations informed by the 'RepRap cartesian firmware' by Zack Smith
|
|
|
|
* and Philipp Tiefenbacher.
|
|
|
|
*/
|
2011-11-13 20:42:08 +01:00
|
|
|
|
2018-06-03 05:59:21 +02:00
|
|
|
/**
|
|
|
|
* __________________________
|
|
|
|
* /| |\ _________________ ^
|
|
|
|
* / | | \ /| |\ |
|
|
|
|
* / | | \ / | | \ s
|
|
|
|
* / | | | | | \ p
|
|
|
|
* / | | | | | \ e
|
|
|
|
* +-----+------------------------+---+--+---------------+----+ e
|
|
|
|
* | BLOCK 1 | BLOCK 2 | d
|
|
|
|
*
|
|
|
|
* time ----->
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* step_events_completed reaches block->decelerate_after after which it decelerates until the trapezoid generator is reset.
|
|
|
|
* The slope of acceleration is calculated using v = u + at where t is the accumulated timer values of the steps so far.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Marlin uses the Bresenham algorithm. For a detailed explanation of theory and
|
|
|
|
* method see https://www.cs.helsinki.fi/group/goa/mallinnus/lines/bresenh.html
|
|
|
|
*/
|
|
|
|
|
2018-05-12 15:34:04 +02:00
|
|
|
/**
|
|
|
|
* Jerk controlled movements planner added Apr 2018 by Eduardo José Tagle.
|
|
|
|
* Equations based on Synthethos TinyG2 sources, but the fixed-point
|
|
|
|
* implementation is new, as we are running the ISR with a variable period.
|
|
|
|
* Also implemented the Bézier velocity curve evaluation in ARM assembler,
|
|
|
|
* to avoid impacting ISR speed.
|
|
|
|
*/
|
2018-04-07 03:48:06 +02:00
|
|
|
|
2011-12-22 14:55:45 +01:00
|
|
|
#include "stepper.h"
|
2017-09-06 13:28:32 +02:00
|
|
|
|
2019-01-24 02:06:54 +01:00
|
|
|
Stepper stepper; // Singleton
|
|
|
|
|
2020-02-24 12:29:13 +01:00
|
|
|
#define BABYSTEPPING_EXTRA_DIR_WAIT
|
|
|
|
|
2019-03-03 00:29:02 +01:00
|
|
|
#if HAS_MOTOR_CURRENT_PWM
|
|
|
|
bool Stepper::initialized; // = false
|
|
|
|
#endif
|
|
|
|
|
2017-09-24 06:25:28 +02:00
|
|
|
#ifdef __AVR__
|
2017-09-06 13:28:32 +02:00
|
|
|
#include "speed_lookuptable.h"
|
|
|
|
#endif
|
|
|
|
|
2016-04-27 16:15:20 +02:00
|
|
|
#include "endstops.h"
|
2011-11-13 20:42:08 +01:00
|
|
|
#include "planner.h"
|
2017-09-08 22:35:25 +02:00
|
|
|
#include "motion.h"
|
2017-09-06 13:28:32 +02:00
|
|
|
|
2019-02-04 10:41:55 +01:00
|
|
|
#include "temperature.h"
|
2017-09-06 13:28:32 +02:00
|
|
|
#include "../lcd/ultralcd.h"
|
|
|
|
#include "../core/language.h"
|
2017-09-08 05:33:16 +02:00
|
|
|
#include "../gcode/queue.h"
|
2017-09-06 13:28:32 +02:00
|
|
|
#include "../sd/cardreader.h"
|
2020-01-03 02:01:38 +01:00
|
|
|
#include "../MarlinCore.h"
|
2018-08-14 10:28:52 +02:00
|
|
|
#include "../HAL/shared/Delay.h"
|
2017-09-06 13:28:32 +02:00
|
|
|
|
2020-02-17 00:46:41 +01:00
|
|
|
#if ENABLED(INTEGRATED_BABYSTEPPING)
|
|
|
|
#include "../feature/babystep.h"
|
|
|
|
#endif
|
|
|
|
|
2017-06-18 01:36:10 +02:00
|
|
|
#if MB(ALLIGATOR)
|
2017-09-06 13:28:32 +02:00
|
|
|
#include "../feature/dac/dac_dac084s085.h"
|
2017-06-18 01:36:10 +02:00
|
|
|
#endif
|
2017-09-06 13:28:32 +02:00
|
|
|
|
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
|
|
|
|
2018-10-16 10:38:57 +02:00
|
|
|
#if ENABLED(MIXING_EXTRUDER)
|
|
|
|
#include "../feature/mixing.h"
|
|
|
|
#endif
|
|
|
|
|
2019-05-04 06:53:15 +02:00
|
|
|
#ifdef FILAMENT_RUNOUT_DISTANCE_MM
|
2018-10-16 14:28:52 +02:00
|
|
|
#include "../feature/runout.h"
|
|
|
|
#endif
|
|
|
|
|
2020-01-14 01:47:30 +01:00
|
|
|
#if HAS_L64XX
|
|
|
|
#include "../libs/L64XX/L64XX_Marlin.h"
|
2020-01-20 02:52:01 +01:00
|
|
|
uint8_t L6470_buf[MAX_L64XX + 1]; // chip command sequence - element 0 not used
|
2020-01-14 01:47:30 +01:00
|
|
|
bool L64XX_OK_to_power_up = false; // flag to keep L64xx steppers powered down after a reset or power up
|
2019-01-24 02:06:54 +01:00
|
|
|
#endif
|
|
|
|
|
2019-09-11 01:52:41 +02:00
|
|
|
#if ENABLED(POWER_LOSS_RECOVERY)
|
|
|
|
#include "../feature/power_loss_recovery.h"
|
|
|
|
#endif
|
|
|
|
|
2016-05-12 00:24:24 +02:00
|
|
|
// public:
|
|
|
|
|
2019-02-06 11:59:22 +01:00
|
|
|
#if HAS_EXTRA_ENDSTOPS || ENABLED(Z_STEPPER_AUTO_ALIGN)
|
2018-06-19 18:55:49 +02:00
|
|
|
bool Stepper::separate_multi_axis = false;
|
2016-05-12 00:24:24 +02:00
|
|
|
#endif
|
|
|
|
|
2017-06-03 07:38:07 +02:00
|
|
|
#if HAS_MOTOR_CURRENT_PWM
|
2017-07-18 10:17:50 +02:00
|
|
|
uint32_t Stepper::motor_current_setting[3]; // Initialized by settings.load()
|
2017-06-03 07:38:07 +02:00
|
|
|
#endif
|
|
|
|
|
2016-05-12 00:24:24 +02:00
|
|
|
// private:
|
|
|
|
|
2019-05-09 18:45:55 +02:00
|
|
|
block_t* Stepper::current_block; // (= nullptr) A pointer to the block currently being traced
|
2018-06-28 01:11:16 +02:00
|
|
|
|
2019-02-03 08:29:00 +01:00
|
|
|
uint8_t Stepper::last_direction_bits, // = 0
|
|
|
|
Stepper::axis_did_move; // = 0
|
2018-06-03 05:59:21 +02:00
|
|
|
|
2018-05-23 10:45:25 +02:00
|
|
|
bool Stepper::abort_current_block;
|
2016-05-12 00:24:24 +02:00
|
|
|
|
2018-09-11 06:09:26 +02:00
|
|
|
#if DISABLED(MIXING_EXTRUDER) && EXTRUDERS > 1
|
2018-06-03 05:59:21 +02:00
|
|
|
uint8_t Stepper::last_moved_extruder = 0xFF;
|
|
|
|
#endif
|
|
|
|
|
2017-10-29 09:43:44 +01:00
|
|
|
#if ENABLED(X_DUAL_ENDSTOPS)
|
2018-06-02 02:02:22 +02:00
|
|
|
bool Stepper::locked_X_motor = false, Stepper::locked_X2_motor = false;
|
2017-10-29 09:43:44 +01:00
|
|
|
#endif
|
|
|
|
#if ENABLED(Y_DUAL_ENDSTOPS)
|
2018-06-02 02:02:22 +02:00
|
|
|
bool Stepper::locked_Y_motor = false, Stepper::locked_Y2_motor = false;
|
2017-10-29 09:43:44 +01:00
|
|
|
#endif
|
2020-01-20 06:35:07 +01:00
|
|
|
|
|
|
|
#if EITHER(Z_MULTI_ENDSTOPS, Z_STEPPER_AUTO_ALIGN)
|
|
|
|
bool Stepper::locked_Z_motor = false, Stepper::locked_Z2_motor = false
|
|
|
|
#if NUM_Z_STEPPER_DRIVERS >= 3
|
|
|
|
, Stepper::locked_Z3_motor = false
|
|
|
|
#if NUM_Z_STEPPER_DRIVERS >= 4
|
|
|
|
, Stepper::locked_Z4_motor = false
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
;
|
2018-06-19 18:55:49 +02:00
|
|
|
#endif
|
2016-05-12 00:24:24 +02:00
|
|
|
|
2018-06-03 05:59:21 +02:00
|
|
|
uint32_t Stepper::acceleration_time, Stepper::deceleration_time;
|
|
|
|
uint8_t Stepper::steps_per_isr;
|
2018-05-27 08:49:59 +02:00
|
|
|
|
2018-06-03 05:59:21 +02:00
|
|
|
#if DISABLED(ADAPTIVE_STEP_SMOOTHING)
|
|
|
|
constexpr
|
|
|
|
#endif
|
|
|
|
uint8_t Stepper::oversampling_factor;
|
|
|
|
|
2019-09-29 11:25:39 +02:00
|
|
|
xyze_long_t Stepper::delta_error{0};
|
2016-05-12 00:24:24 +02:00
|
|
|
|
2019-09-29 11:25:39 +02:00
|
|
|
xyze_ulong_t Stepper::advance_dividend{0};
|
|
|
|
uint32_t Stepper::advance_divisor = 0,
|
2018-06-03 05:59:21 +02:00
|
|
|
Stepper::step_events_completed = 0, // The number of step events executed in the current block
|
2019-09-14 10:05:10 +02:00
|
|
|
Stepper::accelerate_until, // The count at which to stop accelerating
|
|
|
|
Stepper::decelerate_after, // The count at which to start decelerating
|
2018-06-03 05:59:21 +02:00
|
|
|
Stepper::step_event_count; // The total event count for the current block
|
|
|
|
|
2018-10-16 10:38:57 +02:00
|
|
|
#if EXTRUDERS > 1 || ENABLED(MIXING_EXTRUDER)
|
|
|
|
uint8_t Stepper::stepper_extruder;
|
|
|
|
#else
|
|
|
|
constexpr uint8_t Stepper::stepper_extruder;
|
2018-06-03 05:59:21 +02:00
|
|
|
#endif
|
2016-05-12 00:24:24 +02:00
|
|
|
|
2018-05-26 09:02:39 +02:00
|
|
|
#if ENABLED(S_CURVE_ACCELERATION)
|
2018-04-12 01:13:42 +02:00
|
|
|
int32_t __attribute__((used)) Stepper::bezier_A __asm__("bezier_A"); // A coefficient in Bézier speed curve with alias for assembler
|
|
|
|
int32_t __attribute__((used)) Stepper::bezier_B __asm__("bezier_B"); // B coefficient in Bézier speed curve with alias for assembler
|
|
|
|
int32_t __attribute__((used)) Stepper::bezier_C __asm__("bezier_C"); // C coefficient in Bézier speed curve with alias for assembler
|
|
|
|
uint32_t __attribute__((used)) Stepper::bezier_F __asm__("bezier_F"); // F coefficient in Bézier speed curve with alias for assembler
|
|
|
|
uint32_t __attribute__((used)) Stepper::bezier_AV __asm__("bezier_AV"); // AV coefficient in Bézier speed curve with alias for assembler
|
|
|
|
#ifdef __AVR__
|
2018-06-03 05:59:21 +02:00
|
|
|
bool __attribute__((used)) Stepper::A_negative __asm__("A_negative"); // If A coefficient was negative
|
2018-04-12 01:13:42 +02:00
|
|
|
#endif
|
2018-04-07 03:48:06 +02:00
|
|
|
bool Stepper::bezier_2nd_half; // =false If Bézier curve has been initialized or not
|
|
|
|
#endif
|
|
|
|
|
2017-10-09 11:25:18 +02:00
|
|
|
#if ENABLED(LIN_ADVANCE)
|
2016-05-04 21:10:42 +02:00
|
|
|
|
2018-06-03 05:59:21 +02:00
|
|
|
uint32_t Stepper::nextAdvanceISR = LA_ADV_NEVER,
|
|
|
|
Stepper::LA_isr_rate = LA_ADV_NEVER;
|
|
|
|
uint16_t Stepper::LA_current_adv_steps = 0,
|
|
|
|
Stepper::LA_final_adv_steps,
|
|
|
|
Stepper::LA_max_adv_steps;
|
2016-05-04 21:10:42 +02:00
|
|
|
|
2018-06-03 05:59:21 +02:00
|
|
|
int8_t Stepper::LA_steps = 0;
|
2018-03-07 02:21:41 +01:00
|
|
|
|
2018-06-03 05:59:21 +02:00
|
|
|
bool Stepper::LA_use_advance_lead;
|
2016-12-24 03:43:23 +01:00
|
|
|
|
2017-10-09 11:25:18 +02:00
|
|
|
#endif // LIN_ADVANCE
|
2016-05-12 00:24:24 +02:00
|
|
|
|
2020-02-16 04:42:28 +01:00
|
|
|
#if ENABLED(INTEGRATED_BABYSTEPPING)
|
|
|
|
uint32_t Stepper::nextBabystepISR = BABYSTEP_NEVER;
|
|
|
|
#endif
|
|
|
|
|
2018-06-03 05:59:21 +02:00
|
|
|
int32_t Stepper::ticks_nominal = -1;
|
2018-05-26 09:02:39 +02:00
|
|
|
#if DISABLED(S_CURVE_ACCELERATION)
|
2018-05-09 07:17:53 +02:00
|
|
|
uint32_t Stepper::acc_step_rate; // needed for deceleration start point
|
2018-04-07 03:48:06 +02:00
|
|
|
#endif
|
2016-05-12 00:24:24 +02:00
|
|
|
|
2019-09-29 11:25:39 +02:00
|
|
|
xyz_long_t Stepper::endstops_trigsteps;
|
|
|
|
xyze_long_t Stepper::count_position{0};
|
|
|
|
xyze_int8_t Stepper::count_direction{0};
|
2018-06-03 05:59:21 +02:00
|
|
|
|
2018-10-29 20:01:36 +01:00
|
|
|
#define DUAL_ENDSTOP_APPLY_STEP(A,V) \
|
2018-06-19 18:55:49 +02:00
|
|
|
if (separate_multi_axis) { \
|
|
|
|
if (A##_HOME_DIR < 0) { \
|
|
|
|
if (!(TEST(endstops.state(), A##_MIN) && count_direction[_AXIS(A)] < 0) && !locked_##A##_motor) A##_STEP_WRITE(V); \
|
|
|
|
if (!(TEST(endstops.state(), A##2_MIN) && count_direction[_AXIS(A)] < 0) && !locked_##A##2_motor) A##2_STEP_WRITE(V); \
|
|
|
|
} \
|
|
|
|
else { \
|
|
|
|
if (!(TEST(endstops.state(), A##_MAX) && count_direction[_AXIS(A)] > 0) && !locked_##A##_motor) A##_STEP_WRITE(V); \
|
|
|
|
if (!(TEST(endstops.state(), A##2_MAX) && count_direction[_AXIS(A)] > 0) && !locked_##A##2_motor) A##2_STEP_WRITE(V); \
|
|
|
|
} \
|
|
|
|
} \
|
|
|
|
else { \
|
|
|
|
A##_STEP_WRITE(V); \
|
|
|
|
A##2_STEP_WRITE(V); \
|
|
|
|
}
|
|
|
|
|
2018-10-29 20:01:36 +01:00
|
|
|
#define DUAL_SEPARATE_APPLY_STEP(A,V) \
|
|
|
|
if (separate_multi_axis) { \
|
|
|
|
if (!locked_##A##_motor) A##_STEP_WRITE(V); \
|
|
|
|
if (!locked_##A##2_motor) A##2_STEP_WRITE(V); \
|
|
|
|
} \
|
|
|
|
else { \
|
|
|
|
A##_STEP_WRITE(V); \
|
|
|
|
A##2_STEP_WRITE(V); \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define TRIPLE_ENDSTOP_APPLY_STEP(A,V) \
|
2018-06-19 18:55:49 +02:00
|
|
|
if (separate_multi_axis) { \
|
|
|
|
if (A##_HOME_DIR < 0) { \
|
|
|
|
if (!(TEST(endstops.state(), A##_MIN) && count_direction[_AXIS(A)] < 0) && !locked_##A##_motor) A##_STEP_WRITE(V); \
|
|
|
|
if (!(TEST(endstops.state(), A##2_MIN) && count_direction[_AXIS(A)] < 0) && !locked_##A##2_motor) A##2_STEP_WRITE(V); \
|
|
|
|
if (!(TEST(endstops.state(), A##3_MIN) && count_direction[_AXIS(A)] < 0) && !locked_##A##3_motor) A##3_STEP_WRITE(V); \
|
|
|
|
} \
|
|
|
|
else { \
|
|
|
|
if (!(TEST(endstops.state(), A##_MAX) && count_direction[_AXIS(A)] > 0) && !locked_##A##_motor) A##_STEP_WRITE(V); \
|
|
|
|
if (!(TEST(endstops.state(), A##2_MAX) && count_direction[_AXIS(A)] > 0) && !locked_##A##2_motor) A##2_STEP_WRITE(V); \
|
|
|
|
if (!(TEST(endstops.state(), A##3_MAX) && count_direction[_AXIS(A)] > 0) && !locked_##A##3_motor) A##3_STEP_WRITE(V); \
|
|
|
|
} \
|
|
|
|
} \
|
|
|
|
else { \
|
|
|
|
A##_STEP_WRITE(V); \
|
|
|
|
A##2_STEP_WRITE(V); \
|
|
|
|
A##3_STEP_WRITE(V); \
|
|
|
|
}
|
2017-10-29 09:43:44 +01:00
|
|
|
|
2019-01-02 01:22:04 +01:00
|
|
|
#define TRIPLE_SEPARATE_APPLY_STEP(A,V) \
|
|
|
|
if (separate_multi_axis) { \
|
|
|
|
if (!locked_##A##_motor) A##_STEP_WRITE(V); \
|
|
|
|
if (!locked_##A##2_motor) A##2_STEP_WRITE(V); \
|
|
|
|
if (!locked_##A##3_motor) A##3_STEP_WRITE(V); \
|
|
|
|
} \
|
|
|
|
else { \
|
|
|
|
A##_STEP_WRITE(V); \
|
|
|
|
A##2_STEP_WRITE(V); \
|
|
|
|
A##3_STEP_WRITE(V); \
|
|
|
|
}
|
|
|
|
|
2020-01-20 06:35:07 +01:00
|
|
|
#define QUAD_ENDSTOP_APPLY_STEP(A,V) \
|
|
|
|
if (separate_multi_axis) { \
|
|
|
|
if (A##_HOME_DIR < 0) { \
|
|
|
|
if (!(TEST(endstops.state(), A##_MIN) && count_direction[_AXIS(A)] < 0) && !locked_##A##_motor) A##_STEP_WRITE(V); \
|
|
|
|
if (!(TEST(endstops.state(), A##2_MIN) && count_direction[_AXIS(A)] < 0) && !locked_##A##2_motor) A##2_STEP_WRITE(V); \
|
|
|
|
if (!(TEST(endstops.state(), A##3_MIN) && count_direction[_AXIS(A)] < 0) && !locked_##A##3_motor) A##3_STEP_WRITE(V); \
|
|
|
|
if (!(TEST(endstops.state(), A##4_MIN) && count_direction[_AXIS(A)] < 0) && !locked_##A##4_motor) A##4_STEP_WRITE(V); \
|
|
|
|
} \
|
|
|
|
else { \
|
|
|
|
if (!(TEST(endstops.state(), A##_MAX) && count_direction[_AXIS(A)] > 0) && !locked_##A##_motor) A##_STEP_WRITE(V); \
|
|
|
|
if (!(TEST(endstops.state(), A##2_MAX) && count_direction[_AXIS(A)] > 0) && !locked_##A##2_motor) A##2_STEP_WRITE(V); \
|
|
|
|
if (!(TEST(endstops.state(), A##3_MAX) && count_direction[_AXIS(A)] > 0) && !locked_##A##3_motor) A##3_STEP_WRITE(V); \
|
|
|
|
if (!(TEST(endstops.state(), A##4_MAX) && count_direction[_AXIS(A)] > 0) && !locked_##A##4_motor) A##4_STEP_WRITE(V); \
|
|
|
|
} \
|
|
|
|
} \
|
|
|
|
else { \
|
|
|
|
A##_STEP_WRITE(V); \
|
|
|
|
A##2_STEP_WRITE(V); \
|
|
|
|
A##3_STEP_WRITE(V); \
|
|
|
|
A##4_STEP_WRITE(V); \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define QUAD_SEPARATE_APPLY_STEP(A,V) \
|
|
|
|
if (separate_multi_axis) { \
|
|
|
|
if (!locked_##A##_motor) A##_STEP_WRITE(V); \
|
|
|
|
if (!locked_##A##2_motor) A##2_STEP_WRITE(V); \
|
|
|
|
if (!locked_##A##3_motor) A##3_STEP_WRITE(V); \
|
|
|
|
if (!locked_##A##4_motor) A##4_STEP_WRITE(V); \
|
|
|
|
} \
|
|
|
|
else { \
|
|
|
|
A##_STEP_WRITE(V); \
|
|
|
|
A##2_STEP_WRITE(V); \
|
|
|
|
A##3_STEP_WRITE(V); \
|
|
|
|
A##4_STEP_WRITE(V); \
|
|
|
|
}
|
|
|
|
|
2016-07-11 19:19:07 +02:00
|
|
|
#if ENABLED(X_DUAL_STEPPER_DRIVERS)
|
|
|
|
#define X_APPLY_DIR(v,Q) do{ X_DIR_WRITE(v); X2_DIR_WRITE((v) != INVERT_X2_VS_X_DIR); }while(0)
|
2018-01-20 22:08:50 +01:00
|
|
|
#if ENABLED(X_DUAL_ENDSTOPS)
|
2017-10-29 09:43:44 +01:00
|
|
|
#define X_APPLY_STEP(v,Q) DUAL_ENDSTOP_APPLY_STEP(X,v)
|
|
|
|
#else
|
|
|
|
#define X_APPLY_STEP(v,Q) do{ X_STEP_WRITE(v); X2_STEP_WRITE(v); }while(0)
|
|
|
|
#endif
|
2018-01-20 22:08:50 +01:00
|
|
|
#elif ENABLED(DUAL_X_CARRIAGE)
|
2019-03-16 04:46:27 +01:00
|
|
|
#define X_APPLY_DIR(v,ALWAYS) do{ \
|
|
|
|
if (extruder_duplication_enabled || ALWAYS) { X_DIR_WRITE(v); X2_DIR_WRITE(mirrored_duplication_mode ? !(v) : v); } \
|
|
|
|
else if (movement_extruder()) X2_DIR_WRITE(v); else X_DIR_WRITE(v); \
|
|
|
|
}while(0)
|
|
|
|
#define X_APPLY_STEP(v,ALWAYS) do{ \
|
|
|
|
if (extruder_duplication_enabled || ALWAYS) { X_STEP_WRITE(v); X2_STEP_WRITE(v); } \
|
|
|
|
else if (movement_extruder()) X2_STEP_WRITE(v); else X_STEP_WRITE(v); \
|
|
|
|
}while(0)
|
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
|
|
|
|
|
2015-07-31 07:28:11 +02:00
|
|
|
#if ENABLED(Y_DUAL_STEPPER_DRIVERS)
|
2016-07-11 19:19:07 +02:00
|
|
|
#define Y_APPLY_DIR(v,Q) do{ Y_DIR_WRITE(v); Y2_DIR_WRITE((v) != INVERT_Y2_VS_Y_DIR); }while(0)
|
2017-10-29 09:43:44 +01:00
|
|
|
#if ENABLED(Y_DUAL_ENDSTOPS)
|
|
|
|
#define Y_APPLY_STEP(v,Q) DUAL_ENDSTOP_APPLY_STEP(Y,v)
|
|
|
|
#else
|
|
|
|
#define Y_APPLY_STEP(v,Q) do{ Y_STEP_WRITE(v); Y2_STEP_WRITE(v); }while(0)
|
|
|
|
#endif
|
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
|
|
|
|
|
2020-01-20 06:35:07 +01:00
|
|
|
#if NUM_Z_STEPPER_DRIVERS == 4
|
|
|
|
#define Z_APPLY_DIR(v,Q) do{ Z_DIR_WRITE(v); Z2_DIR_WRITE(v); Z3_DIR_WRITE(v); Z4_DIR_WRITE(v); }while(0)
|
|
|
|
#if ENABLED(Z_MULTI_ENDSTOPS)
|
|
|
|
#define Z_APPLY_STEP(v,Q) QUAD_ENDSTOP_APPLY_STEP(Z,v)
|
|
|
|
#elif ENABLED(Z_STEPPER_AUTO_ALIGN)
|
|
|
|
#define Z_APPLY_STEP(v,Q) QUAD_SEPARATE_APPLY_STEP(Z,v)
|
|
|
|
#else
|
|
|
|
#define Z_APPLY_STEP(v,Q) do{ Z_STEP_WRITE(v); Z2_STEP_WRITE(v); Z3_STEP_WRITE(v); Z4_STEP_WRITE(v); }while(0)
|
|
|
|
#endif
|
|
|
|
#elif NUM_Z_STEPPER_DRIVERS == 3
|
2018-06-19 18:55:49 +02:00
|
|
|
#define Z_APPLY_DIR(v,Q) do{ Z_DIR_WRITE(v); Z2_DIR_WRITE(v); Z3_DIR_WRITE(v); }while(0)
|
2020-01-20 06:35:07 +01:00
|
|
|
#if ENABLED(Z_MULTI_ENDSTOPS)
|
2018-06-19 18:55:49 +02:00
|
|
|
#define Z_APPLY_STEP(v,Q) TRIPLE_ENDSTOP_APPLY_STEP(Z,v)
|
2019-01-02 01:22:04 +01:00
|
|
|
#elif ENABLED(Z_STEPPER_AUTO_ALIGN)
|
|
|
|
#define Z_APPLY_STEP(v,Q) TRIPLE_SEPARATE_APPLY_STEP(Z,v)
|
2018-06-19 18:55:49 +02:00
|
|
|
#else
|
|
|
|
#define Z_APPLY_STEP(v,Q) do{ Z_STEP_WRITE(v); Z2_STEP_WRITE(v); Z3_STEP_WRITE(v); }while(0)
|
|
|
|
#endif
|
2020-01-20 06:35:07 +01:00
|
|
|
#elif NUM_Z_STEPPER_DRIVERS == 2
|
2016-07-11 19:19:07 +02:00
|
|
|
#define Z_APPLY_DIR(v,Q) do{ Z_DIR_WRITE(v); Z2_DIR_WRITE(v); }while(0)
|
2020-01-20 06:35:07 +01:00
|
|
|
#if ENABLED(Z_MULTI_ENDSTOPS)
|
2017-10-29 09:43:44 +01:00
|
|
|
#define Z_APPLY_STEP(v,Q) DUAL_ENDSTOP_APPLY_STEP(Z,v)
|
2018-10-29 20:01:36 +01:00
|
|
|
#elif ENABLED(Z_STEPPER_AUTO_ALIGN)
|
|
|
|
#define Z_APPLY_STEP(v,Q) DUAL_SEPARATE_APPLY_STEP(Z,v)
|
2015-03-24 18:06:44 +01:00
|
|
|
#else
|
2016-07-11 19:19:07 +02:00
|
|
|
#define Z_APPLY_STEP(v,Q) do{ Z_STEP_WRITE(v); Z2_STEP_WRITE(v); }while(0)
|
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
|
|
|
|
|
2016-06-29 00:06:56 +02:00
|
|
|
#if DISABLED(MIXING_EXTRUDER)
|
2018-10-16 10:38:57 +02:00
|
|
|
#define E_APPLY_STEP(v,Q) E_STEP_WRITE(stepper_extruder, v)
|
2016-06-29 00:06:56 +02:00
|
|
|
#endif
|
2019-12-22 01:36:25 +01:00
|
|
|
|
|
|
|
#define CYCLES_TO_NS(CYC) (1000UL * (CYC) / ((F_CPU) / 1000000))
|
|
|
|
constexpr uint32_t NS_PER_PULSE_TIMER_TICK = 1000000000UL / (STEPPER_TIMER_RATE);
|
|
|
|
|
|
|
|
// Round up when converting from ns to timer ticks
|
|
|
|
constexpr uint32_t NS_TO_PULSE_TIMER_TICKS(uint32_t NS) { return (NS + (NS_PER_PULSE_TIMER_TICK) / 2) / (NS_PER_PULSE_TIMER_TICK); }
|
|
|
|
|
2019-12-19 09:38:48 +01:00
|
|
|
#define TIMER_SETUP_NS (CYCLES_TO_NS(TIMER_READ_ADD_AND_STORE_CYCLES))
|
|
|
|
|
|
|
|
#define PULSE_HIGH_TICK_COUNT hal_timer_t(NS_TO_PULSE_TIMER_TICKS(_MIN_PULSE_HIGH_NS - _MIN(_MIN_PULSE_HIGH_NS, TIMER_SETUP_NS)))
|
|
|
|
#define PULSE_LOW_TICK_COUNT hal_timer_t(NS_TO_PULSE_TIMER_TICKS(_MIN_PULSE_LOW_NS - _MIN(_MIN_PULSE_LOW_NS, TIMER_SETUP_NS)))
|
|
|
|
|
2020-02-14 12:14:37 +01:00
|
|
|
#define USING_TIMED_PULSE() hal_timer_t start_pulse_count = 0
|
|
|
|
#define START_TIMED_PULSE(DIR) (start_pulse_count = HAL_timer_get_count(PULSE_TIMER_NUM))
|
|
|
|
#define AWAIT_TIMED_PULSE(DIR) while (PULSE_##DIR##_TICK_COUNT > HAL_timer_get_count(PULSE_TIMER_NUM) - start_pulse_count) { }
|
2019-12-19 09:38:48 +01:00
|
|
|
#define START_HIGH_PULSE() START_TIMED_PULSE(HIGH)
|
2020-02-14 12:14:37 +01:00
|
|
|
#define AWAIT_HIGH_PULSE() AWAIT_TIMED_PULSE(HIGH)
|
2019-12-19 09:38:48 +01:00
|
|
|
#define START_LOW_PULSE() START_TIMED_PULSE(LOW)
|
2020-02-14 12:14:37 +01:00
|
|
|
#define AWAIT_LOW_PULSE() AWAIT_TIMED_PULSE(LOW)
|
2011-11-13 20:42:08 +01:00
|
|
|
|
2020-02-10 23:58:21 +01:00
|
|
|
#if MINIMUM_STEPPER_PRE_DIR_DELAY > 0
|
|
|
|
#define DIR_WAIT_BEFORE() DELAY_NS(MINIMUM_STEPPER_PRE_DIR_DELAY)
|
|
|
|
#else
|
|
|
|
#define DIR_WAIT_BEFORE()
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if MINIMUM_STEPPER_POST_DIR_DELAY > 0
|
|
|
|
#define DIR_WAIT_AFTER() DELAY_NS(MINIMUM_STEPPER_POST_DIR_DELAY)
|
|
|
|
#else
|
|
|
|
#define DIR_WAIT_AFTER()
|
|
|
|
#endif
|
|
|
|
|
2015-06-16 02:36:41 +02:00
|
|
|
/**
|
|
|
|
* Set the stepper direction of each axis
|
|
|
|
*
|
2016-05-20 22:27:49 +02:00
|
|
|
* COREXY: X_AXIS=A_AXIS and Y_AXIS=B_AXIS
|
|
|
|
* COREXZ: X_AXIS=A_AXIS and Z_AXIS=C_AXIS
|
|
|
|
* COREYZ: Y_AXIS=B_AXIS and Z_AXIS=C_AXIS
|
2015-06-16 02:36:41 +02:00
|
|
|
*/
|
2016-04-27 16:15:20 +02:00
|
|
|
void Stepper::set_directions() {
|
2015-06-16 02:36:41 +02:00
|
|
|
|
2020-02-10 23:58:21 +01:00
|
|
|
DIR_WAIT_BEFORE();
|
2019-09-20 01:44:07 +02:00
|
|
|
|
2019-01-24 02:06:54 +01:00
|
|
|
#define SET_STEP_DIR(A) \
|
|
|
|
if (motor_direction(_AXIS(A))) { \
|
2020-01-14 01:47:30 +01:00
|
|
|
A##_APPLY_DIR(INVERT_##A##_DIR, false); \
|
2019-01-24 02:06:54 +01:00
|
|
|
count_direction[_AXIS(A)] = -1; \
|
|
|
|
} \
|
|
|
|
else { \
|
2020-01-14 01:47:30 +01:00
|
|
|
A##_APPLY_DIR(!INVERT_##A##_DIR, false); \
|
2019-01-24 02:06:54 +01:00
|
|
|
count_direction[_AXIS(A)] = 1; \
|
2016-03-10 10:42:58 +01:00
|
|
|
}
|
2015-10-03 08:08:58 +02:00
|
|
|
|
2016-08-28 02:38:24 +02:00
|
|
|
#if HAS_X_DIR
|
|
|
|
SET_STEP_DIR(X); // A
|
|
|
|
#endif
|
2019-01-24 02:06:54 +01:00
|
|
|
|
2016-08-28 02:38:24 +02:00
|
|
|
#if HAS_Y_DIR
|
|
|
|
SET_STEP_DIR(Y); // B
|
|
|
|
#endif
|
2019-01-24 02:06:54 +01:00
|
|
|
|
2016-08-28 02:38:24 +02:00
|
|
|
#if HAS_Z_DIR
|
|
|
|
SET_STEP_DIR(Z); // C
|
|
|
|
#endif
|
2015-10-03 08:08:58 +02:00
|
|
|
|
2017-10-09 11:25:18 +02:00
|
|
|
#if DISABLED(LIN_ADVANCE)
|
2018-06-03 05:59:21 +02:00
|
|
|
#if ENABLED(MIXING_EXTRUDER)
|
2018-10-16 10:38:57 +02:00
|
|
|
// Because this is valid for the whole block we don't know
|
|
|
|
// what e-steppers will step. Likely all. Set all.
|
2018-06-03 05:59:21 +02:00
|
|
|
if (motor_direction(E_AXIS)) {
|
2018-10-16 10:38:57 +02:00
|
|
|
MIXER_STEPPER_LOOP(j) REV_E_DIR(j);
|
2019-09-29 11:25:39 +02:00
|
|
|
count_direction.e = -1;
|
2018-06-03 05:59:21 +02:00
|
|
|
}
|
|
|
|
else {
|
2018-10-16 10:38:57 +02:00
|
|
|
MIXER_STEPPER_LOOP(j) NORM_E_DIR(j);
|
2019-09-29 11:25:39 +02:00
|
|
|
count_direction.e = 1;
|
2018-06-03 05:59:21 +02:00
|
|
|
}
|
|
|
|
#else
|
|
|
|
if (motor_direction(E_AXIS)) {
|
2018-10-16 10:38:57 +02:00
|
|
|
REV_E_DIR(stepper_extruder);
|
2019-09-29 11:25:39 +02:00
|
|
|
count_direction.e = -1;
|
2018-06-03 05:59:21 +02:00
|
|
|
}
|
|
|
|
else {
|
2018-10-16 10:38:57 +02:00
|
|
|
NORM_E_DIR(stepper_extruder);
|
2019-09-29 11:25:39 +02:00
|
|
|
count_direction.e = 1;
|
2018-06-03 05:59:21 +02:00
|
|
|
}
|
|
|
|
#endif
|
2017-10-09 11:25:18 +02:00
|
|
|
#endif // !LIN_ADVANCE
|
2018-06-23 19:31:18 +02:00
|
|
|
|
2020-01-14 01:47:30 +01:00
|
|
|
#if HAS_L64XX
|
|
|
|
if (L64XX_OK_to_power_up) { // OK to send the direction commands (which powers up the L64XX steppers)
|
|
|
|
if (L64xxManager.spi_active) {
|
|
|
|
L64xxManager.spi_abort = true; // Interrupted SPI transfer needs to shut down gracefully
|
|
|
|
for (uint8_t j = 1; j <= L64XX::chain[0]; j++)
|
|
|
|
L6470_buf[j] = dSPIN_NOP; // Fill buffer with NOOPs
|
|
|
|
L64xxManager.transfer(L6470_buf, L64XX::chain[0]); // Send enough NOOPs to complete any command
|
|
|
|
L64xxManager.transfer(L6470_buf, L64XX::chain[0]);
|
|
|
|
L64xxManager.transfer(L6470_buf, L64XX::chain[0]);
|
|
|
|
}
|
2019-01-24 02:06:54 +01:00
|
|
|
|
2020-01-14 01:47:30 +01:00
|
|
|
// L64xxManager.dir_commands[] is an array that holds direction command for each stepper
|
2019-01-24 02:06:54 +01:00
|
|
|
|
2020-01-14 01:47:30 +01:00
|
|
|
// Scan command array, copy matches into L64xxManager.transfer
|
|
|
|
for (uint8_t j = 1; j <= L64XX::chain[0]; j++)
|
|
|
|
L6470_buf[j] = L64xxManager.dir_commands[L64XX::chain[j]];
|
2019-01-24 02:06:54 +01:00
|
|
|
|
2020-01-14 01:47:30 +01:00
|
|
|
L64xxManager.transfer(L6470_buf, L64XX::chain[0]); // send the command stream to the drivers
|
|
|
|
}
|
2019-01-24 02:06:54 +01:00
|
|
|
#endif
|
|
|
|
|
2020-02-10 23:58:21 +01:00
|
|
|
DIR_WAIT_AFTER();
|
2015-05-17 14:33:09 +02:00
|
|
|
}
|
|
|
|
|
2018-05-26 09:02:39 +02:00
|
|
|
#if ENABLED(S_CURVE_ACCELERATION)
|
2018-04-07 03:48:06 +02:00
|
|
|
/**
|
2018-05-27 07:10:05 +02:00
|
|
|
* This uses a quintic (fifth-degree) Bézier polynomial for the velocity curve, giving
|
|
|
|
* a "linear pop" velocity curve; with pop being the sixth derivative of position:
|
2018-04-07 03:48:06 +02:00
|
|
|
* velocity - 1st, acceleration - 2nd, jerk - 3rd, snap - 4th, crackle - 5th, pop - 6th
|
|
|
|
*
|
|
|
|
* The Bézier curve takes the form:
|
|
|
|
*
|
|
|
|
* V(t) = P_0 * B_0(t) + P_1 * B_1(t) + P_2 * B_2(t) + P_3 * B_3(t) + P_4 * B_4(t) + P_5 * B_5(t)
|
|
|
|
*
|
2018-05-27 07:10:05 +02:00
|
|
|
* Where 0 <= t <= 1, and V(t) is the velocity. P_0 through P_5 are the control points, and B_0(t)
|
2018-04-07 03:48:06 +02:00
|
|
|
* through B_5(t) are the Bernstein basis as follows:
|
|
|
|
*
|
|
|
|
* B_0(t) = (1-t)^5 = -t^5 + 5t^4 - 10t^3 + 10t^2 - 5t + 1
|
|
|
|
* B_1(t) = 5(1-t)^4 * t = 5t^5 - 20t^4 + 30t^3 - 20t^2 + 5t
|
|
|
|
* B_2(t) = 10(1-t)^3 * t^2 = -10t^5 + 30t^4 - 30t^3 + 10t^2
|
|
|
|
* B_3(t) = 10(1-t)^2 * t^3 = 10t^5 - 20t^4 + 10t^3
|
|
|
|
* B_4(t) = 5(1-t) * t^4 = -5t^5 + 5t^4
|
|
|
|
* B_5(t) = t^5 = t^5
|
|
|
|
* ^ ^ ^ ^ ^ ^
|
|
|
|
* | | | | | |
|
|
|
|
* A B C D E F
|
|
|
|
*
|
2018-05-27 07:10:05 +02:00
|
|
|
* Unfortunately, we cannot use forward-differencing to calculate each position through
|
2018-04-07 03:48:06 +02:00
|
|
|
* the curve, as Marlin uses variable timer periods. So, we require a formula of the form:
|
|
|
|
*
|
|
|
|
* V_f(t) = A*t^5 + B*t^4 + C*t^3 + D*t^2 + E*t + F
|
|
|
|
*
|
2018-05-27 07:10:05 +02:00
|
|
|
* Looking at the above B_0(t) through B_5(t) expanded forms, if we take the coefficients of t^5
|
2018-04-07 03:48:06 +02:00
|
|
|
* through t of the Bézier form of V(t), we can determine that:
|
|
|
|
*
|
|
|
|
* A = -P_0 + 5*P_1 - 10*P_2 + 10*P_3 - 5*P_4 + P_5
|
|
|
|
* B = 5*P_0 - 20*P_1 + 30*P_2 - 20*P_3 + 5*P_4
|
|
|
|
* C = -10*P_0 + 30*P_1 - 30*P_2 + 10*P_3
|
|
|
|
* D = 10*P_0 - 20*P_1 + 10*P_2
|
|
|
|
* E = - 5*P_0 + 5*P_1
|
|
|
|
* F = P_0
|
|
|
|
*
|
2018-05-27 07:10:05 +02:00
|
|
|
* Now, since we will (currently) *always* want the initial acceleration and jerk values to be 0,
|
2018-04-07 03:48:06 +02:00
|
|
|
* We set P_i = P_0 = P_1 = P_2 (initial velocity), and P_t = P_3 = P_4 = P_5 (target velocity),
|
|
|
|
* which, after simplification, resolves to:
|
|
|
|
*
|
|
|
|
* A = - 6*P_i + 6*P_t = 6*(P_t - P_i)
|
|
|
|
* B = 15*P_i - 15*P_t = 15*(P_i - P_t)
|
|
|
|
* C = -10*P_i + 10*P_t = 10*(P_t - P_i)
|
|
|
|
* D = 0
|
|
|
|
* E = 0
|
|
|
|
* F = P_i
|
|
|
|
*
|
2018-05-27 07:10:05 +02:00
|
|
|
* As the t is evaluated in non uniform steps here, there is no other way rather than evaluating
|
2018-04-07 03:48:06 +02:00
|
|
|
* the Bézier curve at each point:
|
|
|
|
*
|
|
|
|
* V_f(t) = A*t^5 + B*t^4 + C*t^3 + F [0 <= t <= 1]
|
|
|
|
*
|
2018-05-27 07:10:05 +02:00
|
|
|
* Floating point arithmetic execution time cost is prohibitive, so we will transform the math to
|
2018-04-07 03:48:06 +02:00
|
|
|
* use fixed point values to be able to evaluate it in realtime. Assuming a maximum of 250000 steps
|
2018-05-09 07:17:53 +02:00
|
|
|
* per second (driver pulses should at least be 2µS hi/2µS lo), and allocating 2 bits to avoid
|
2018-04-07 03:48:06 +02:00
|
|
|
* overflows on the evaluation of the Bézier curve, means we can use
|
|
|
|
*
|
|
|
|
* t: unsigned Q0.32 (0 <= t < 1) |range 0 to 0xFFFFFFFF unsigned
|
|
|
|
* A: signed Q24.7 , |range = +/- 250000 * 6 * 128 = +/- 192000000 = 0x0B71B000 | 28 bits + sign
|
|
|
|
* B: signed Q24.7 , |range = +/- 250000 *15 * 128 = +/- 480000000 = 0x1C9C3800 | 29 bits + sign
|
|
|
|
* C: signed Q24.7 , |range = +/- 250000 *10 * 128 = +/- 320000000 = 0x1312D000 | 29 bits + sign
|
|
|
|
* F: signed Q24.7 , |range = +/- 250000 * 128 = 32000000 = 0x01E84800 | 25 bits + sign
|
|
|
|
*
|
2018-05-27 07:10:05 +02:00
|
|
|
* The trapezoid generator state contains the following information, that we will use to create and evaluate
|
2018-04-07 03:48:06 +02:00
|
|
|
* the Bézier curve:
|
|
|
|
*
|
|
|
|
* blk->step_event_count [TS] = The total count of steps for this movement. (=distance)
|
|
|
|
* blk->initial_rate [VI] = The initial steps per second (=velocity)
|
|
|
|
* blk->final_rate [VF] = The ending steps per second (=velocity)
|
|
|
|
* and the count of events completed (step_events_completed) [CS] (=distance until now)
|
|
|
|
*
|
|
|
|
* Note the abbreviations we use in the following formulae are between []s
|
|
|
|
*
|
2018-04-12 01:13:42 +02:00
|
|
|
* For Any 32bit CPU:
|
|
|
|
*
|
2018-05-27 07:10:05 +02:00
|
|
|
* At the start of each trapezoid, calculate the coefficients A,B,C,F and Advance [AV], as follows:
|
2018-04-12 01:13:42 +02:00
|
|
|
*
|
|
|
|
* A = 6*128*(VF - VI) = 768*(VF - VI)
|
|
|
|
* B = 15*128*(VI - VF) = 1920*(VI - VF)
|
|
|
|
* C = 10*128*(VF - VI) = 1280*(VF - VI)
|
|
|
|
* F = 128*VI = 128*VI
|
|
|
|
* AV = (1<<32)/TS ~= 0xFFFFFFFF / TS (To use ARM UDIV, that is 32 bits) (this is computed at the planner, to offload expensive calculations from the ISR)
|
|
|
|
*
|
2018-05-27 07:10:05 +02:00
|
|
|
* And for each point, evaluate the curve with the following sequence:
|
2018-04-12 01:13:42 +02:00
|
|
|
*
|
|
|
|
* void lsrs(uint32_t& d, uint32_t s, int cnt) {
|
|
|
|
* d = s >> cnt;
|
|
|
|
* }
|
|
|
|
* void lsls(uint32_t& d, uint32_t s, int cnt) {
|
|
|
|
* d = s << cnt;
|
|
|
|
* }
|
|
|
|
* void lsrs(int32_t& d, uint32_t s, int cnt) {
|
|
|
|
* d = uint32_t(s) >> cnt;
|
|
|
|
* }
|
|
|
|
* void lsls(int32_t& d, uint32_t s, int cnt) {
|
|
|
|
* d = uint32_t(s) << cnt;
|
|
|
|
* }
|
|
|
|
* void umull(uint32_t& rlo, uint32_t& rhi, uint32_t op1, uint32_t op2) {
|
|
|
|
* uint64_t res = uint64_t(op1) * op2;
|
|
|
|
* rlo = uint32_t(res & 0xFFFFFFFF);
|
|
|
|
* rhi = uint32_t((res >> 32) & 0xFFFFFFFF);
|
|
|
|
* }
|
|
|
|
* void smlal(int32_t& rlo, int32_t& rhi, int32_t op1, int32_t op2) {
|
|
|
|
* int64_t mul = int64_t(op1) * op2;
|
|
|
|
* int64_t s = int64_t(uint32_t(rlo) | ((uint64_t(uint32_t(rhi)) << 32U)));
|
|
|
|
* mul += s;
|
|
|
|
* rlo = int32_t(mul & 0xFFFFFFFF);
|
|
|
|
* rhi = int32_t((mul >> 32) & 0xFFFFFFFF);
|
|
|
|
* }
|
|
|
|
* int32_t _eval_bezier_curve_arm(uint32_t curr_step) {
|
2018-11-04 23:17:13 +01:00
|
|
|
* uint32_t flo = 0;
|
|
|
|
* uint32_t fhi = bezier_AV * curr_step;
|
|
|
|
* uint32_t t = fhi;
|
|
|
|
* int32_t alo = bezier_F;
|
|
|
|
* int32_t ahi = 0;
|
|
|
|
* int32_t A = bezier_A;
|
|
|
|
* int32_t B = bezier_B;
|
|
|
|
* int32_t C = bezier_C;
|
2018-04-12 01:13:42 +02:00
|
|
|
*
|
|
|
|
* lsrs(ahi, alo, 1); // a = F << 31
|
|
|
|
* lsls(alo, alo, 31); //
|
|
|
|
* umull(flo, fhi, fhi, t); // f *= t
|
|
|
|
* umull(flo, fhi, fhi, t); // f>>=32; f*=t
|
|
|
|
* lsrs(flo, fhi, 1); //
|
|
|
|
* smlal(alo, ahi, flo, C); // a+=(f>>33)*C
|
|
|
|
* umull(flo, fhi, fhi, t); // f>>=32; f*=t
|
|
|
|
* lsrs(flo, fhi, 1); //
|
|
|
|
* smlal(alo, ahi, flo, B); // a+=(f>>33)*B
|
|
|
|
* umull(flo, fhi, fhi, t); // f>>=32; f*=t
|
|
|
|
* lsrs(flo, fhi, 1); // f>>=33;
|
|
|
|
* smlal(alo, ahi, flo, A); // a+=(f>>33)*A;
|
|
|
|
* lsrs(alo, ahi, 6); // a>>=38
|
|
|
|
*
|
|
|
|
* return alo;
|
|
|
|
* }
|
|
|
|
*
|
2018-05-27 07:10:05 +02:00
|
|
|
* This is rewritten in ARM assembly for optimal performance (43 cycles to execute).
|
2018-04-12 01:13:42 +02:00
|
|
|
*
|
2018-05-27 07:10:05 +02:00
|
|
|
* For AVR, the precision of coefficients is scaled so the Bézier curve can be evaluated in real-time:
|
|
|
|
* Let's reduce precision as much as possible. After some experimentation we found that:
|
2018-04-12 01:13:42 +02:00
|
|
|
*
|
|
|
|
* Assume t and AV with 24 bits is enough
|
|
|
|
* A = 6*(VF - VI)
|
|
|
|
* B = 15*(VI - VF)
|
|
|
|
* C = 10*(VF - VI)
|
|
|
|
* F = VI
|
|
|
|
* AV = (1<<24)/TS (this is computed at the planner, to offload expensive calculations from the ISR)
|
|
|
|
*
|
2018-05-27 07:10:05 +02:00
|
|
|
* Instead of storing sign for each coefficient, we will store its absolute value,
|
2018-04-12 01:13:42 +02:00
|
|
|
* and flag the sign of the A coefficient, so we can save to store the sign bit.
|
2018-05-27 07:10:05 +02:00
|
|
|
* It always holds that sign(A) = - sign(B) = sign(C)
|
2018-04-12 01:13:42 +02:00
|
|
|
*
|
|
|
|
* So, the resulting range of the coefficients are:
|
|
|
|
*
|
|
|
|
* t: unsigned (0 <= t < 1) |range 0 to 0xFFFFFF unsigned
|
|
|
|
* A: signed Q24 , range = 250000 * 6 = 1500000 = 0x16E360 | 21 bits
|
|
|
|
* B: signed Q24 , range = 250000 *15 = 3750000 = 0x393870 | 22 bits
|
|
|
|
* C: signed Q24 , range = 250000 *10 = 2500000 = 0x1312D0 | 21 bits
|
|
|
|
* F: signed Q24 , range = 250000 = 250000 = 0x0ED090 | 20 bits
|
|
|
|
*
|
2018-05-27 07:10:05 +02:00
|
|
|
* And for each curve, estimate its coefficients with:
|
2018-04-12 01:13:42 +02:00
|
|
|
*
|
|
|
|
* void _calc_bezier_curve_coeffs(int32_t v0, int32_t v1, uint32_t av) {
|
|
|
|
* // Calculate the Bézier coefficients
|
|
|
|
* if (v1 < v0) {
|
|
|
|
* A_negative = true;
|
|
|
|
* bezier_A = 6 * (v0 - v1);
|
|
|
|
* bezier_B = 15 * (v0 - v1);
|
|
|
|
* bezier_C = 10 * (v0 - v1);
|
|
|
|
* }
|
|
|
|
* else {
|
|
|
|
* A_negative = false;
|
|
|
|
* bezier_A = 6 * (v1 - v0);
|
|
|
|
* bezier_B = 15 * (v1 - v0);
|
|
|
|
* bezier_C = 10 * (v1 - v0);
|
|
|
|
* }
|
|
|
|
* bezier_F = v0;
|
|
|
|
* }
|
|
|
|
*
|
2018-05-27 07:10:05 +02:00
|
|
|
* And for each point, evaluate the curve with the following sequence:
|
2018-04-12 01:13:42 +02:00
|
|
|
*
|
|
|
|
* // unsigned multiplication of 24 bits x 24bits, return upper 16 bits
|
|
|
|
* void umul24x24to16hi(uint16_t& r, uint24_t op1, uint24_t op2) {
|
|
|
|
* r = (uint64_t(op1) * op2) >> 8;
|
|
|
|
* }
|
|
|
|
* // unsigned multiplication of 16 bits x 16bits, return upper 16 bits
|
|
|
|
* void umul16x16to16hi(uint16_t& r, uint16_t op1, uint16_t op2) {
|
|
|
|
* r = (uint32_t(op1) * op2) >> 16;
|
|
|
|
* }
|
|
|
|
* // unsigned multiplication of 16 bits x 24bits, return upper 24 bits
|
|
|
|
* void umul16x24to24hi(uint24_t& r, uint16_t op1, uint24_t op2) {
|
|
|
|
* r = uint24_t((uint64_t(op1) * op2) >> 16);
|
|
|
|
* }
|
|
|
|
*
|
|
|
|
* int32_t _eval_bezier_curve(uint32_t curr_step) {
|
|
|
|
* // To save computing, the first step is always the initial speed
|
|
|
|
* if (!curr_step)
|
|
|
|
* return bezier_F;
|
|
|
|
*
|
|
|
|
* uint16_t t;
|
|
|
|
* umul24x24to16hi(t, bezier_AV, curr_step); // t: Range 0 - 1^16 = 16 bits
|
|
|
|
* uint16_t f = t;
|
2018-11-11 18:28:29 +01:00
|
|
|
* umul16x16to16hi(f, f, t); // Range 16 bits (unsigned)
|
|
|
|
* umul16x16to16hi(f, f, t); // Range 16 bits : f = t^3 (unsigned)
|
|
|
|
* uint24_t acc = bezier_F; // Range 20 bits (unsigned)
|
2018-04-12 01:13:42 +02:00
|
|
|
* if (A_negative) {
|
|
|
|
* uint24_t v;
|
2018-11-11 18:28:29 +01:00
|
|
|
* umul16x24to24hi(v, f, bezier_C); // Range 21bits
|
2018-04-12 01:13:42 +02:00
|
|
|
* acc -= v;
|
2018-11-11 18:28:29 +01:00
|
|
|
* umul16x16to16hi(f, f, t); // Range 16 bits : f = t^4 (unsigned)
|
|
|
|
* umul16x24to24hi(v, f, bezier_B); // Range 22bits
|
2018-04-12 01:13:42 +02:00
|
|
|
* acc += v;
|
2018-11-11 18:28:29 +01:00
|
|
|
* umul16x16to16hi(f, f, t); // Range 16 bits : f = t^5 (unsigned)
|
|
|
|
* umul16x24to24hi(v, f, bezier_A); // Range 21bits + 15 = 36bits (plus sign)
|
2018-04-12 01:13:42 +02:00
|
|
|
* acc -= v;
|
|
|
|
* }
|
|
|
|
* else {
|
|
|
|
* uint24_t v;
|
2018-11-11 18:28:29 +01:00
|
|
|
* umul16x24to24hi(v, f, bezier_C); // Range 21bits
|
2018-04-12 01:13:42 +02:00
|
|
|
* acc += v;
|
2018-11-11 18:28:29 +01:00
|
|
|
* umul16x16to16hi(f, f, t); // Range 16 bits : f = t^4 (unsigned)
|
|
|
|
* umul16x24to24hi(v, f, bezier_B); // Range 22bits
|
2018-04-12 01:13:42 +02:00
|
|
|
* acc -= v;
|
2018-11-11 18:28:29 +01:00
|
|
|
* umul16x16to16hi(f, f, t); // Range 16 bits : f = t^5 (unsigned)
|
|
|
|
* umul16x24to24hi(v, f, bezier_A); // Range 21bits + 15 = 36bits (plus sign)
|
2018-04-12 01:13:42 +02:00
|
|
|
* acc += v;
|
|
|
|
* }
|
|
|
|
* return acc;
|
|
|
|
* }
|
2018-05-27 07:10:05 +02:00
|
|
|
* These functions are translated to assembler for optimal performance.
|
|
|
|
* Coefficient calculation takes 70 cycles. Bezier point evaluation takes 150 cycles.
|
2018-04-07 03:48:06 +02:00
|
|
|
*/
|
|
|
|
|
2018-04-12 01:13:42 +02:00
|
|
|
#ifdef __AVR__
|
|
|
|
|
|
|
|
// For AVR we use assembly to maximize speed
|
|
|
|
void Stepper::_calc_bezier_curve_coeffs(const int32_t v0, const int32_t v1, const uint32_t av) {
|
|
|
|
|
|
|
|
// Store advance
|
|
|
|
bezier_AV = av;
|
|
|
|
|
|
|
|
// Calculate the rest of the coefficients
|
2018-11-04 23:17:13 +01:00
|
|
|
uint8_t r2 = v0 & 0xFF;
|
|
|
|
uint8_t r3 = (v0 >> 8) & 0xFF;
|
|
|
|
uint8_t r12 = (v0 >> 16) & 0xFF;
|
|
|
|
uint8_t r5 = v1 & 0xFF;
|
|
|
|
uint8_t r6 = (v1 >> 8) & 0xFF;
|
|
|
|
uint8_t r7 = (v1 >> 16) & 0xFF;
|
|
|
|
uint8_t r4,r8,r9,r10,r11;
|
2018-04-12 01:13:42 +02:00
|
|
|
|
|
|
|
__asm__ __volatile__(
|
|
|
|
/* Calculate the Bézier coefficients */
|
|
|
|
/* %10:%1:%0 = v0*/
|
|
|
|
/* %5:%4:%3 = v1*/
|
|
|
|
/* %7:%6:%10 = temporary*/
|
|
|
|
/* %9 = val (must be high register!)*/
|
|
|
|
/* %10 (must be high register!)*/
|
|
|
|
|
|
|
|
/* Store initial velocity*/
|
2018-05-08 12:10:27 +02:00
|
|
|
A("sts bezier_F, %0")
|
|
|
|
A("sts bezier_F+1, %1")
|
|
|
|
A("sts bezier_F+2, %10") /* bezier_F = %10:%1:%0 = v0 */
|
2018-04-12 01:13:42 +02:00
|
|
|
|
|
|
|
/* Get delta speed */
|
2018-05-08 12:10:27 +02:00
|
|
|
A("ldi %2,-1") /* %2 = 0xFF, means A_negative = true */
|
|
|
|
A("clr %8") /* %8 = 0 */
|
|
|
|
A("sub %0,%3")
|
|
|
|
A("sbc %1,%4")
|
|
|
|
A("sbc %10,%5") /* v0 -= v1, C=1 if result is negative */
|
|
|
|
A("brcc 1f") /* branch if result is positive (C=0), that means v0 >= v1 */
|
2018-04-12 01:13:42 +02:00
|
|
|
|
|
|
|
/* Result was negative, get the absolute value*/
|
2018-05-08 12:10:27 +02:00
|
|
|
A("com %10")
|
|
|
|
A("com %1")
|
|
|
|
A("neg %0")
|
|
|
|
A("sbc %1,%2")
|
|
|
|
A("sbc %10,%2") /* %10:%1:%0 +1 -> %10:%1:%0 = -(v0 - v1) = (v1 - v0) */
|
|
|
|
A("clr %2") /* %2 = 0, means A_negative = false */
|
2018-04-12 01:13:42 +02:00
|
|
|
|
|
|
|
/* Store negative flag*/
|
2018-05-08 12:10:27 +02:00
|
|
|
L("1")
|
|
|
|
A("sts A_negative, %2") /* Store negative flag */
|
2018-04-12 01:13:42 +02:00
|
|
|
|
|
|
|
/* Compute coefficients A,B and C [20 cycles worst case]*/
|
2018-05-08 12:10:27 +02:00
|
|
|
A("ldi %9,6") /* %9 = 6 */
|
|
|
|
A("mul %0,%9") /* r1:r0 = 6*LO(v0-v1) */
|
|
|
|
A("sts bezier_A, r0")
|
|
|
|
A("mov %6,r1")
|
|
|
|
A("clr %7") /* %7:%6:r0 = 6*LO(v0-v1) */
|
|
|
|
A("mul %1,%9") /* r1:r0 = 6*MI(v0-v1) */
|
|
|
|
A("add %6,r0")
|
|
|
|
A("adc %7,r1") /* %7:%6:?? += 6*MI(v0-v1) << 8 */
|
|
|
|
A("mul %10,%9") /* r1:r0 = 6*HI(v0-v1) */
|
|
|
|
A("add %7,r0") /* %7:%6:?? += 6*HI(v0-v1) << 16 */
|
|
|
|
A("sts bezier_A+1, %6")
|
|
|
|
A("sts bezier_A+2, %7") /* bezier_A = %7:%6:?? = 6*(v0-v1) [35 cycles worst] */
|
|
|
|
|
|
|
|
A("ldi %9,15") /* %9 = 15 */
|
|
|
|
A("mul %0,%9") /* r1:r0 = 5*LO(v0-v1) */
|
|
|
|
A("sts bezier_B, r0")
|
|
|
|
A("mov %6,r1")
|
|
|
|
A("clr %7") /* %7:%6:?? = 5*LO(v0-v1) */
|
|
|
|
A("mul %1,%9") /* r1:r0 = 5*MI(v0-v1) */
|
|
|
|
A("add %6,r0")
|
|
|
|
A("adc %7,r1") /* %7:%6:?? += 5*MI(v0-v1) << 8 */
|
|
|
|
A("mul %10,%9") /* r1:r0 = 5*HI(v0-v1) */
|
|
|
|
A("add %7,r0") /* %7:%6:?? += 5*HI(v0-v1) << 16 */
|
|
|
|
A("sts bezier_B+1, %6")
|
|
|
|
A("sts bezier_B+2, %7") /* bezier_B = %7:%6:?? = 5*(v0-v1) [50 cycles worst] */
|
|
|
|
|
|
|
|
A("ldi %9,10") /* %9 = 10 */
|
|
|
|
A("mul %0,%9") /* r1:r0 = 10*LO(v0-v1) */
|
|
|
|
A("sts bezier_C, r0")
|
|
|
|
A("mov %6,r1")
|
|
|
|
A("clr %7") /* %7:%6:?? = 10*LO(v0-v1) */
|
|
|
|
A("mul %1,%9") /* r1:r0 = 10*MI(v0-v1) */
|
|
|
|
A("add %6,r0")
|
|
|
|
A("adc %7,r1") /* %7:%6:?? += 10*MI(v0-v1) << 8 */
|
|
|
|
A("mul %10,%9") /* r1:r0 = 10*HI(v0-v1) */
|
|
|
|
A("add %7,r0") /* %7:%6:?? += 10*HI(v0-v1) << 16 */
|
|
|
|
A("sts bezier_C+1, %6")
|
2018-05-26 08:00:13 +02:00
|
|
|
" sts bezier_C+2, %7" /* bezier_C = %7:%6:?? = 10*(v0-v1) [65 cycles worst] */
|
2018-04-12 01:13:42 +02:00
|
|
|
: "+r" (r2),
|
|
|
|
"+d" (r3),
|
|
|
|
"=r" (r4),
|
|
|
|
"+r" (r5),
|
|
|
|
"+r" (r6),
|
|
|
|
"+r" (r7),
|
|
|
|
"=r" (r8),
|
|
|
|
"=r" (r9),
|
|
|
|
"=r" (r10),
|
|
|
|
"=d" (r11),
|
|
|
|
"+r" (r12)
|
|
|
|
:
|
|
|
|
: "r0", "r1", "cc", "memory"
|
|
|
|
);
|
|
|
|
}
|
2018-04-07 03:48:06 +02:00
|
|
|
|
2018-04-12 01:13:42 +02:00
|
|
|
FORCE_INLINE int32_t Stepper::_eval_bezier_curve(const uint32_t curr_step) {
|
|
|
|
|
|
|
|
// If dealing with the first step, save expensive computing and return the initial speed
|
|
|
|
if (!curr_step)
|
|
|
|
return bezier_F;
|
|
|
|
|
2018-11-04 23:17:13 +01:00
|
|
|
uint8_t r0 = 0; /* Zero register */
|
|
|
|
uint8_t r2 = (curr_step) & 0xFF;
|
|
|
|
uint8_t r3 = (curr_step >> 8) & 0xFF;
|
|
|
|
uint8_t r4 = (curr_step >> 16) & 0xFF;
|
|
|
|
uint8_t r1,r5,r6,r7,r8,r9,r10,r11; /* Temporary registers */
|
2018-04-12 01:13:42 +02:00
|
|
|
|
|
|
|
__asm__ __volatile(
|
|
|
|
/* umul24x24to16hi(t, bezier_AV, curr_step); t: Range 0 - 1^16 = 16 bits*/
|
2018-05-08 12:10:27 +02:00
|
|
|
A("lds %9,bezier_AV") /* %9 = LO(AV)*/
|
|
|
|
A("mul %9,%2") /* r1:r0 = LO(bezier_AV)*LO(curr_step)*/
|
|
|
|
A("mov %7,r1") /* %7 = LO(bezier_AV)*LO(curr_step) >> 8*/
|
|
|
|
A("clr %8") /* %8:%7 = LO(bezier_AV)*LO(curr_step) >> 8*/
|
|
|
|
A("lds %10,bezier_AV+1") /* %10 = MI(AV)*/
|
|
|
|
A("mul %10,%2") /* r1:r0 = MI(bezier_AV)*LO(curr_step)*/
|
|
|
|
A("add %7,r0")
|
|
|
|
A("adc %8,r1") /* %8:%7 += MI(bezier_AV)*LO(curr_step)*/
|
|
|
|
A("lds r1,bezier_AV+2") /* r11 = HI(AV)*/
|
|
|
|
A("mul r1,%2") /* r1:r0 = HI(bezier_AV)*LO(curr_step)*/
|
|
|
|
A("add %8,r0") /* %8:%7 += HI(bezier_AV)*LO(curr_step) << 8*/
|
|
|
|
A("mul %9,%3") /* r1:r0 = LO(bezier_AV)*MI(curr_step)*/
|
|
|
|
A("add %7,r0")
|
|
|
|
A("adc %8,r1") /* %8:%7 += LO(bezier_AV)*MI(curr_step)*/
|
|
|
|
A("mul %10,%3") /* r1:r0 = MI(bezier_AV)*MI(curr_step)*/
|
|
|
|
A("add %8,r0") /* %8:%7 += LO(bezier_AV)*MI(curr_step) << 8*/
|
|
|
|
A("mul %9,%4") /* r1:r0 = LO(bezier_AV)*HI(curr_step)*/
|
|
|
|
A("add %8,r0") /* %8:%7 += LO(bezier_AV)*HI(curr_step) << 8*/
|
2018-04-12 01:13:42 +02:00
|
|
|
/* %8:%7 = t*/
|
|
|
|
|
|
|
|
/* uint16_t f = t;*/
|
2018-05-08 12:10:27 +02:00
|
|
|
A("mov %5,%7") /* %6:%5 = f*/
|
|
|
|
A("mov %6,%8")
|
2018-04-12 01:13:42 +02:00
|
|
|
/* %6:%5 = f*/
|
|
|
|
|
|
|
|
/* umul16x16to16hi(f, f, t); / Range 16 bits (unsigned) [17] */
|
2018-05-08 12:10:27 +02:00
|
|
|
A("mul %5,%7") /* r1:r0 = LO(f) * LO(t)*/
|
|
|
|
A("mov %9,r1") /* store MIL(LO(f) * LO(t)) in %9, we need it for rounding*/
|
|
|
|
A("clr %10") /* %10 = 0*/
|
|
|
|
A("clr %11") /* %11 = 0*/
|
|
|
|
A("mul %5,%8") /* r1:r0 = LO(f) * HI(t)*/
|
|
|
|
A("add %9,r0") /* %9 += LO(LO(f) * HI(t))*/
|
|
|
|
A("adc %10,r1") /* %10 = HI(LO(f) * HI(t))*/
|
|
|
|
A("adc %11,%0") /* %11 += carry*/
|
|
|
|
A("mul %6,%7") /* r1:r0 = HI(f) * LO(t)*/
|
|
|
|
A("add %9,r0") /* %9 += LO(HI(f) * LO(t))*/
|
|
|
|
A("adc %10,r1") /* %10 += HI(HI(f) * LO(t)) */
|
|
|
|
A("adc %11,%0") /* %11 += carry*/
|
|
|
|
A("mul %6,%8") /* r1:r0 = HI(f) * HI(t)*/
|
|
|
|
A("add %10,r0") /* %10 += LO(HI(f) * HI(t))*/
|
|
|
|
A("adc %11,r1") /* %11 += HI(HI(f) * HI(t))*/
|
|
|
|
A("mov %5,%10") /* %6:%5 = */
|
|
|
|
A("mov %6,%11") /* f = %10:%11*/
|
2018-04-12 01:13:42 +02:00
|
|
|
|
|
|
|
/* umul16x16to16hi(f, f, t); / Range 16 bits : f = t^3 (unsigned) [17]*/
|
2018-05-08 12:10:27 +02:00
|
|
|
A("mul %5,%7") /* r1:r0 = LO(f) * LO(t)*/
|
|
|
|
A("mov %1,r1") /* store MIL(LO(f) * LO(t)) in %1, we need it for rounding*/
|
|
|
|
A("clr %10") /* %10 = 0*/
|
|
|
|
A("clr %11") /* %11 = 0*/
|
|
|
|
A("mul %5,%8") /* r1:r0 = LO(f) * HI(t)*/
|
|
|
|
A("add %1,r0") /* %1 += LO(LO(f) * HI(t))*/
|
|
|
|
A("adc %10,r1") /* %10 = HI(LO(f) * HI(t))*/
|
|
|
|
A("adc %11,%0") /* %11 += carry*/
|
|
|
|
A("mul %6,%7") /* r1:r0 = HI(f) * LO(t)*/
|
|
|
|
A("add %1,r0") /* %1 += LO(HI(f) * LO(t))*/
|
|
|
|
A("adc %10,r1") /* %10 += HI(HI(f) * LO(t))*/
|
|
|
|
A("adc %11,%0") /* %11 += carry*/
|
|
|
|
A("mul %6,%8") /* r1:r0 = HI(f) * HI(t)*/
|
|
|
|
A("add %10,r0") /* %10 += LO(HI(f) * HI(t))*/
|
|
|
|
A("adc %11,r1") /* %11 += HI(HI(f) * HI(t))*/
|
|
|
|
A("mov %5,%10") /* %6:%5 =*/
|
|
|
|
A("mov %6,%11") /* f = %10:%11*/
|
2018-04-12 01:13:42 +02:00
|
|
|
/* [15 +17*2] = [49]*/
|
|
|
|
|
|
|
|
/* %4:%3:%2 will be acc from now on*/
|
|
|
|
|
|
|
|
/* uint24_t acc = bezier_F; / Range 20 bits (unsigned)*/
|
2018-05-08 12:10:27 +02:00
|
|
|
A("clr %9") /* "decimal place we get for free"*/
|
|
|
|
A("lds %2,bezier_F")
|
|
|
|
A("lds %3,bezier_F+1")
|
|
|
|
A("lds %4,bezier_F+2") /* %4:%3:%2 = acc*/
|
2018-04-12 01:13:42 +02:00
|
|
|
|
|
|
|
/* if (A_negative) {*/
|
2018-05-08 12:10:27 +02:00
|
|
|
A("lds r0,A_negative")
|
|
|
|
A("or r0,%0") /* Is flag signalling negative? */
|
|
|
|
A("brne 3f") /* If yes, Skip next instruction if A was negative*/
|
|
|
|
A("rjmp 1f") /* Otherwise, jump */
|
2018-04-12 01:13:42 +02:00
|
|
|
|
|
|
|
/* uint24_t v; */
|
|
|
|
/* umul16x24to24hi(v, f, bezier_C); / Range 21bits [29] */
|
|
|
|
/* acc -= v; */
|
2018-05-08 12:10:27 +02:00
|
|
|
L("3")
|
|
|
|
A("lds %10, bezier_C") /* %10 = LO(bezier_C)*/
|
|
|
|
A("mul %10,%5") /* r1:r0 = LO(bezier_C) * LO(f)*/
|
|
|
|
A("sub %9,r1")
|
|
|
|
A("sbc %2,%0")
|
|
|
|
A("sbc %3,%0")
|
|
|
|
A("sbc %4,%0") /* %4:%3:%2:%9 -= HI(LO(bezier_C) * LO(f))*/
|
|
|
|
A("lds %11, bezier_C+1") /* %11 = MI(bezier_C)*/
|
|
|
|
A("mul %11,%5") /* r1:r0 = MI(bezier_C) * LO(f)*/
|
|
|
|
A("sub %9,r0")
|
|
|
|
A("sbc %2,r1")
|
|
|
|
A("sbc %3,%0")
|
|
|
|
A("sbc %4,%0") /* %4:%3:%2:%9 -= MI(bezier_C) * LO(f)*/
|
|
|
|
A("lds %1, bezier_C+2") /* %1 = HI(bezier_C)*/
|
|
|
|
A("mul %1,%5") /* r1:r0 = MI(bezier_C) * LO(f)*/
|
|
|
|
A("sub %2,r0")
|
|
|
|
A("sbc %3,r1")
|
|
|
|
A("sbc %4,%0") /* %4:%3:%2:%9 -= HI(bezier_C) * LO(f) << 8*/
|
|
|
|
A("mul %10,%6") /* r1:r0 = LO(bezier_C) * MI(f)*/
|
|
|
|
A("sub %9,r0")
|
|
|
|
A("sbc %2,r1")
|
|
|
|
A("sbc %3,%0")
|
|
|
|
A("sbc %4,%0") /* %4:%3:%2:%9 -= LO(bezier_C) * MI(f)*/
|
|
|
|
A("mul %11,%6") /* r1:r0 = MI(bezier_C) * MI(f)*/
|
|
|
|
A("sub %2,r0")
|
|
|
|
A("sbc %3,r1")
|
|
|
|
A("sbc %4,%0") /* %4:%3:%2:%9 -= MI(bezier_C) * MI(f) << 8*/
|
|
|
|
A("mul %1,%6") /* r1:r0 = HI(bezier_C) * LO(f)*/
|
|
|
|
A("sub %3,r0")
|
|
|
|
A("sbc %4,r1") /* %4:%3:%2:%9 -= HI(bezier_C) * LO(f) << 16*/
|
2018-04-12 01:13:42 +02:00
|
|
|
|
|
|
|
/* umul16x16to16hi(f, f, t); / Range 16 bits : f = t^3 (unsigned) [17]*/
|
2018-05-08 12:10:27 +02:00
|
|
|
A("mul %5,%7") /* r1:r0 = LO(f) * LO(t)*/
|
|
|
|
A("mov %1,r1") /* store MIL(LO(f) * LO(t)) in %1, we need it for rounding*/
|
|
|
|
A("clr %10") /* %10 = 0*/
|
|
|
|
A("clr %11") /* %11 = 0*/
|
|
|
|
A("mul %5,%8") /* r1:r0 = LO(f) * HI(t)*/
|
|
|
|
A("add %1,r0") /* %1 += LO(LO(f) * HI(t))*/
|
|
|
|
A("adc %10,r1") /* %10 = HI(LO(f) * HI(t))*/
|
|
|
|
A("adc %11,%0") /* %11 += carry*/
|
|
|
|
A("mul %6,%7") /* r1:r0 = HI(f) * LO(t)*/
|
|
|
|
A("add %1,r0") /* %1 += LO(HI(f) * LO(t))*/
|
|
|
|
A("adc %10,r1") /* %10 += HI(HI(f) * LO(t))*/
|
|
|
|
A("adc %11,%0") /* %11 += carry*/
|
|
|
|
A("mul %6,%8") /* r1:r0 = HI(f) * HI(t)*/
|
|
|
|
A("add %10,r0") /* %10 += LO(HI(f) * HI(t))*/
|
|
|
|
A("adc %11,r1") /* %11 += HI(HI(f) * HI(t))*/
|
|
|
|
A("mov %5,%10") /* %6:%5 =*/
|
|
|
|
A("mov %6,%11") /* f = %10:%11*/
|
2018-04-12 01:13:42 +02:00
|
|
|
|
|
|
|
/* umul16x24to24hi(v, f, bezier_B); / Range 22bits [29]*/
|
|
|
|
/* acc += v; */
|
2018-05-08 12:10:27 +02:00
|
|
|
A("lds %10, bezier_B") /* %10 = LO(bezier_B)*/
|
|
|
|
A("mul %10,%5") /* r1:r0 = LO(bezier_B) * LO(f)*/
|
|
|
|
A("add %9,r1")
|
|
|
|
A("adc %2,%0")
|
|
|
|
A("adc %3,%0")
|
|
|
|
A("adc %4,%0") /* %4:%3:%2:%9 += HI(LO(bezier_B) * LO(f))*/
|
|
|
|
A("lds %11, bezier_B+1") /* %11 = MI(bezier_B)*/
|
|
|
|
A("mul %11,%5") /* r1:r0 = MI(bezier_B) * LO(f)*/
|
|
|
|
A("add %9,r0")
|
|
|
|
A("adc %2,r1")
|
|
|
|
A("adc %3,%0")
|
|
|
|
A("adc %4,%0") /* %4:%3:%2:%9 += MI(bezier_B) * LO(f)*/
|
|
|
|
A("lds %1, bezier_B+2") /* %1 = HI(bezier_B)*/
|
|
|
|
A("mul %1,%5") /* r1:r0 = MI(bezier_B) * LO(f)*/
|
|
|
|
A("add %2,r0")
|
|
|
|
A("adc %3,r1")
|
|
|
|
A("adc %4,%0") /* %4:%3:%2:%9 += HI(bezier_B) * LO(f) << 8*/
|
|
|
|
A("mul %10,%6") /* r1:r0 = LO(bezier_B) * MI(f)*/
|
|
|
|
A("add %9,r0")
|
|
|
|
A("adc %2,r1")
|
|
|
|
A("adc %3,%0")
|
|
|
|
A("adc %4,%0") /* %4:%3:%2:%9 += LO(bezier_B) * MI(f)*/
|
|
|
|
A("mul %11,%6") /* r1:r0 = MI(bezier_B) * MI(f)*/
|
|
|
|
A("add %2,r0")
|
|
|
|
A("adc %3,r1")
|
|
|
|
A("adc %4,%0") /* %4:%3:%2:%9 += MI(bezier_B) * MI(f) << 8*/
|
|
|
|
A("mul %1,%6") /* r1:r0 = HI(bezier_B) * LO(f)*/
|
|
|
|
A("add %3,r0")
|
|
|
|
A("adc %4,r1") /* %4:%3:%2:%9 += HI(bezier_B) * LO(f) << 16*/
|
2018-04-12 01:13:42 +02:00
|
|
|
|
|
|
|
/* umul16x16to16hi(f, f, t); / Range 16 bits : f = t^5 (unsigned) [17]*/
|
2018-05-08 12:10:27 +02:00
|
|
|
A("mul %5,%7") /* r1:r0 = LO(f) * LO(t)*/
|
|
|
|
A("mov %1,r1") /* store MIL(LO(f) * LO(t)) in %1, we need it for rounding*/
|
|
|
|
A("clr %10") /* %10 = 0*/
|
|
|
|
A("clr %11") /* %11 = 0*/
|
|
|
|
A("mul %5,%8") /* r1:r0 = LO(f) * HI(t)*/
|
|
|
|
A("add %1,r0") /* %1 += LO(LO(f) * HI(t))*/
|
|
|
|
A("adc %10,r1") /* %10 = HI(LO(f) * HI(t))*/
|
|
|
|
A("adc %11,%0") /* %11 += carry*/
|
|
|
|
A("mul %6,%7") /* r1:r0 = HI(f) * LO(t)*/
|
|
|
|
A("add %1,r0") /* %1 += LO(HI(f) * LO(t))*/
|
|
|
|
A("adc %10,r1") /* %10 += HI(HI(f) * LO(t))*/
|
|
|
|
A("adc %11,%0") /* %11 += carry*/
|
|
|
|
A("mul %6,%8") /* r1:r0 = HI(f) * HI(t)*/
|
|
|
|
A("add %10,r0") /* %10 += LO(HI(f) * HI(t))*/
|
|
|
|
A("adc %11,r1") /* %11 += HI(HI(f) * HI(t))*/
|
|
|
|
A("mov %5,%10") /* %6:%5 =*/
|
|
|
|
A("mov %6,%11") /* f = %10:%11*/
|
2018-04-12 01:13:42 +02:00
|
|
|
|
|
|
|
/* umul16x24to24hi(v, f, bezier_A); / Range 21bits [29]*/
|
|
|
|
/* acc -= v; */
|
2018-05-08 12:10:27 +02:00
|
|
|
A("lds %10, bezier_A") /* %10 = LO(bezier_A)*/
|
|
|
|
A("mul %10,%5") /* r1:r0 = LO(bezier_A) * LO(f)*/
|
|
|
|
A("sub %9,r1")
|
|
|
|
A("sbc %2,%0")
|
|
|
|
A("sbc %3,%0")
|
|
|
|
A("sbc %4,%0") /* %4:%3:%2:%9 -= HI(LO(bezier_A) * LO(f))*/
|
|
|
|
A("lds %11, bezier_A+1") /* %11 = MI(bezier_A)*/
|
|
|
|
A("mul %11,%5") /* r1:r0 = MI(bezier_A) * LO(f)*/
|
|
|
|
A("sub %9,r0")
|
|
|
|
A("sbc %2,r1")
|
|
|
|
A("sbc %3,%0")
|
|
|
|
A("sbc %4,%0") /* %4:%3:%2:%9 -= MI(bezier_A) * LO(f)*/
|
|
|
|
A("lds %1, bezier_A+2") /* %1 = HI(bezier_A)*/
|
|
|
|
A("mul %1,%5") /* r1:r0 = MI(bezier_A) * LO(f)*/
|
|
|
|
A("sub %2,r0")
|
|
|
|
A("sbc %3,r1")
|
|
|
|
A("sbc %4,%0") /* %4:%3:%2:%9 -= HI(bezier_A) * LO(f) << 8*/
|
|
|
|
A("mul %10,%6") /* r1:r0 = LO(bezier_A) * MI(f)*/
|
|
|
|
A("sub %9,r0")
|
|
|
|
A("sbc %2,r1")
|
|
|
|
A("sbc %3,%0")
|
|
|
|
A("sbc %4,%0") /* %4:%3:%2:%9 -= LO(bezier_A) * MI(f)*/
|
|
|
|
A("mul %11,%6") /* r1:r0 = MI(bezier_A) * MI(f)*/
|
|
|
|
A("sub %2,r0")
|
|
|
|
A("sbc %3,r1")
|
|
|
|
A("sbc %4,%0") /* %4:%3:%2:%9 -= MI(bezier_A) * MI(f) << 8*/
|
|
|
|
A("mul %1,%6") /* r1:r0 = HI(bezier_A) * LO(f)*/
|
|
|
|
A("sub %3,r0")
|
|
|
|
A("sbc %4,r1") /* %4:%3:%2:%9 -= HI(bezier_A) * LO(f) << 16*/
|
|
|
|
A("jmp 2f") /* Done!*/
|
|
|
|
|
|
|
|
L("1")
|
2018-04-12 01:13:42 +02:00
|
|
|
|
|
|
|
/* uint24_t v; */
|
|
|
|
/* umul16x24to24hi(v, f, bezier_C); / Range 21bits [29]*/
|
|
|
|
/* acc += v; */
|
2018-05-08 12:10:27 +02:00
|
|
|
A("lds %10, bezier_C") /* %10 = LO(bezier_C)*/
|
|
|
|
A("mul %10,%5") /* r1:r0 = LO(bezier_C) * LO(f)*/
|
|
|
|
A("add %9,r1")
|
|
|
|
A("adc %2,%0")
|
|
|
|
A("adc %3,%0")
|
|
|
|
A("adc %4,%0") /* %4:%3:%2:%9 += HI(LO(bezier_C) * LO(f))*/
|
|
|
|
A("lds %11, bezier_C+1") /* %11 = MI(bezier_C)*/
|
|
|
|
A("mul %11,%5") /* r1:r0 = MI(bezier_C) * LO(f)*/
|
|
|
|
A("add %9,r0")
|
|
|
|
A("adc %2,r1")
|
|
|
|
A("adc %3,%0")
|
|
|
|
A("adc %4,%0") /* %4:%3:%2:%9 += MI(bezier_C) * LO(f)*/
|
|
|
|
A("lds %1, bezier_C+2") /* %1 = HI(bezier_C)*/
|
|
|
|
A("mul %1,%5") /* r1:r0 = MI(bezier_C) * LO(f)*/
|
|
|
|
A("add %2,r0")
|
|
|
|
A("adc %3,r1")
|
|
|
|
A("adc %4,%0") /* %4:%3:%2:%9 += HI(bezier_C) * LO(f) << 8*/
|
|
|
|
A("mul %10,%6") /* r1:r0 = LO(bezier_C) * MI(f)*/
|
|
|
|
A("add %9,r0")
|
|
|
|
A("adc %2,r1")
|
|
|
|
A("adc %3,%0")
|
|
|
|
A("adc %4,%0") /* %4:%3:%2:%9 += LO(bezier_C) * MI(f)*/
|
|
|
|
A("mul %11,%6") /* r1:r0 = MI(bezier_C) * MI(f)*/
|
|
|
|
A("add %2,r0")
|
|
|
|
A("adc %3,r1")
|
|
|
|
A("adc %4,%0") /* %4:%3:%2:%9 += MI(bezier_C) * MI(f) << 8*/
|
|
|
|
A("mul %1,%6") /* r1:r0 = HI(bezier_C) * LO(f)*/
|
|
|
|
A("add %3,r0")
|
|
|
|
A("adc %4,r1") /* %4:%3:%2:%9 += HI(bezier_C) * LO(f) << 16*/
|
2018-04-12 01:13:42 +02:00
|
|
|
|
|
|
|
/* umul16x16to16hi(f, f, t); / Range 16 bits : f = t^3 (unsigned) [17]*/
|
2018-05-08 12:10:27 +02:00
|
|
|
A("mul %5,%7") /* r1:r0 = LO(f) * LO(t)*/
|
|
|
|
A("mov %1,r1") /* store MIL(LO(f) * LO(t)) in %1, we need it for rounding*/
|
|
|
|
A("clr %10") /* %10 = 0*/
|
|
|
|
A("clr %11") /* %11 = 0*/
|
|
|
|
A("mul %5,%8") /* r1:r0 = LO(f) * HI(t)*/
|
|
|
|
A("add %1,r0") /* %1 += LO(LO(f) * HI(t))*/
|
|
|
|
A("adc %10,r1") /* %10 = HI(LO(f) * HI(t))*/
|
|
|
|
A("adc %11,%0") /* %11 += carry*/
|
|
|
|
A("mul %6,%7") /* r1:r0 = HI(f) * LO(t)*/
|
|
|
|
A("add %1,r0") /* %1 += LO(HI(f) * LO(t))*/
|
|
|
|
A("adc %10,r1") /* %10 += HI(HI(f) * LO(t))*/
|
|
|
|
A("adc %11,%0") /* %11 += carry*/
|
|
|
|
A("mul %6,%8") /* r1:r0 = HI(f) * HI(t)*/
|
|
|
|
A("add %10,r0") /* %10 += LO(HI(f) * HI(t))*/
|
|
|
|
A("adc %11,r1") /* %11 += HI(HI(f) * HI(t))*/
|
|
|
|
A("mov %5,%10") /* %6:%5 =*/
|
|
|
|
A("mov %6,%11") /* f = %10:%11*/
|
2018-04-12 01:13:42 +02:00
|
|
|
|
|
|
|
/* umul16x24to24hi(v, f, bezier_B); / Range 22bits [29]*/
|
|
|
|
/* acc -= v;*/
|
2018-05-08 12:10:27 +02:00
|
|
|
A("lds %10, bezier_B") /* %10 = LO(bezier_B)*/
|
|
|
|
A("mul %10,%5") /* r1:r0 = LO(bezier_B) * LO(f)*/
|
|
|
|
A("sub %9,r1")
|
|
|
|
A("sbc %2,%0")
|
|
|
|
A("sbc %3,%0")
|
|
|
|
A("sbc %4,%0") /* %4:%3:%2:%9 -= HI(LO(bezier_B) * LO(f))*/
|
|
|
|
A("lds %11, bezier_B+1") /* %11 = MI(bezier_B)*/
|
|
|
|
A("mul %11,%5") /* r1:r0 = MI(bezier_B) * LO(f)*/
|
|
|
|
A("sub %9,r0")
|
|
|
|
A("sbc %2,r1")
|
|
|
|
A("sbc %3,%0")
|
|
|
|
A("sbc %4,%0") /* %4:%3:%2:%9 -= MI(bezier_B) * LO(f)*/
|
|
|
|
A("lds %1, bezier_B+2") /* %1 = HI(bezier_B)*/
|
|
|
|
A("mul %1,%5") /* r1:r0 = MI(bezier_B) * LO(f)*/
|
|
|
|
A("sub %2,r0")
|
|
|
|
A("sbc %3,r1")
|
|
|
|
A("sbc %4,%0") /* %4:%3:%2:%9 -= HI(bezier_B) * LO(f) << 8*/
|
|
|
|
A("mul %10,%6") /* r1:r0 = LO(bezier_B) * MI(f)*/
|
|
|
|
A("sub %9,r0")
|
|
|
|
A("sbc %2,r1")
|
|
|
|
A("sbc %3,%0")
|
|
|
|
A("sbc %4,%0") /* %4:%3:%2:%9 -= LO(bezier_B) * MI(f)*/
|
|
|
|
A("mul %11,%6") /* r1:r0 = MI(bezier_B) * MI(f)*/
|
|
|
|
A("sub %2,r0")
|
|
|
|
A("sbc %3,r1")
|
|
|
|
A("sbc %4,%0") /* %4:%3:%2:%9 -= MI(bezier_B) * MI(f) << 8*/
|
|
|
|
A("mul %1,%6") /* r1:r0 = HI(bezier_B) * LO(f)*/
|
|
|
|
A("sub %3,r0")
|
|
|
|
A("sbc %4,r1") /* %4:%3:%2:%9 -= HI(bezier_B) * LO(f) << 16*/
|
2018-04-12 01:13:42 +02:00
|
|
|
|
|
|
|
/* umul16x16to16hi(f, f, t); / Range 16 bits : f = t^5 (unsigned) [17]*/
|
2018-05-08 12:10:27 +02:00
|
|
|
A("mul %5,%7") /* r1:r0 = LO(f) * LO(t)*/
|
|
|
|
A("mov %1,r1") /* store MIL(LO(f) * LO(t)) in %1, we need it for rounding*/
|
|
|
|
A("clr %10") /* %10 = 0*/
|
|
|
|
A("clr %11") /* %11 = 0*/
|
|
|
|
A("mul %5,%8") /* r1:r0 = LO(f) * HI(t)*/
|
|
|
|
A("add %1,r0") /* %1 += LO(LO(f) * HI(t))*/
|
|
|
|
A("adc %10,r1") /* %10 = HI(LO(f) * HI(t))*/
|
|
|
|
A("adc %11,%0") /* %11 += carry*/
|
|
|
|
A("mul %6,%7") /* r1:r0 = HI(f) * LO(t)*/
|
|
|
|
A("add %1,r0") /* %1 += LO(HI(f) * LO(t))*/
|
|
|
|
A("adc %10,r1") /* %10 += HI(HI(f) * LO(t))*/
|
|
|
|
A("adc %11,%0") /* %11 += carry*/
|
|
|
|
A("mul %6,%8") /* r1:r0 = HI(f) * HI(t)*/
|
|
|
|
A("add %10,r0") /* %10 += LO(HI(f) * HI(t))*/
|
|
|
|
A("adc %11,r1") /* %11 += HI(HI(f) * HI(t))*/
|
|
|
|
A("mov %5,%10") /* %6:%5 =*/
|
|
|
|
A("mov %6,%11") /* f = %10:%11*/
|
2018-04-12 01:13:42 +02:00
|
|
|
|
|
|
|
/* umul16x24to24hi(v, f, bezier_A); / Range 21bits [29]*/
|
|
|
|
/* acc += v; */
|
2018-05-08 12:10:27 +02:00
|
|
|
A("lds %10, bezier_A") /* %10 = LO(bezier_A)*/
|
|
|
|
A("mul %10,%5") /* r1:r0 = LO(bezier_A) * LO(f)*/
|
|
|
|
A("add %9,r1")
|
|
|
|
A("adc %2,%0")
|
|
|
|
A("adc %3,%0")
|
|
|
|
A("adc %4,%0") /* %4:%3:%2:%9 += HI(LO(bezier_A) * LO(f))*/
|
|
|
|
A("lds %11, bezier_A+1") /* %11 = MI(bezier_A)*/
|
|
|
|
A("mul %11,%5") /* r1:r0 = MI(bezier_A) * LO(f)*/
|
|
|
|
A("add %9,r0")
|
|
|
|
A("adc %2,r1")
|
|
|
|
A("adc %3,%0")
|
|
|
|
A("adc %4,%0") /* %4:%3:%2:%9 += MI(bezier_A) * LO(f)*/
|
|
|
|
A("lds %1, bezier_A+2") /* %1 = HI(bezier_A)*/
|
|
|
|
A("mul %1,%5") /* r1:r0 = MI(bezier_A) * LO(f)*/
|
|
|
|
A("add %2,r0")
|
|
|
|
A("adc %3,r1")
|
|
|
|
A("adc %4,%0") /* %4:%3:%2:%9 += HI(bezier_A) * LO(f) << 8*/
|
|
|
|
A("mul %10,%6") /* r1:r0 = LO(bezier_A) * MI(f)*/
|
|
|
|
A("add %9,r0")
|
|
|
|
A("adc %2,r1")
|
|
|
|
A("adc %3,%0")
|
|
|
|
A("adc %4,%0") /* %4:%3:%2:%9 += LO(bezier_A) * MI(f)*/
|
|
|
|
A("mul %11,%6") /* r1:r0 = MI(bezier_A) * MI(f)*/
|
|
|
|
A("add %2,r0")
|
|
|
|
A("adc %3,r1")
|
|
|
|
A("adc %4,%0") /* %4:%3:%2:%9 += MI(bezier_A) * MI(f) << 8*/
|
|
|
|
A("mul %1,%6") /* r1:r0 = HI(bezier_A) * LO(f)*/
|
|
|
|
A("add %3,r0")
|
|
|
|
A("adc %4,r1") /* %4:%3:%2:%9 += HI(bezier_A) * LO(f) << 16*/
|
|
|
|
L("2")
|
2018-05-26 08:00:13 +02:00
|
|
|
" clr __zero_reg__" /* C runtime expects r1 = __zero_reg__ = 0 */
|
2018-04-12 01:13:42 +02:00
|
|
|
: "+r"(r0),
|
|
|
|
"+r"(r1),
|
|
|
|
"+r"(r2),
|
|
|
|
"+r"(r3),
|
|
|
|
"+r"(r4),
|
|
|
|
"+r"(r5),
|
|
|
|
"+r"(r6),
|
|
|
|
"+r"(r7),
|
|
|
|
"+r"(r8),
|
|
|
|
"+r"(r9),
|
|
|
|
"+r"(r10),
|
|
|
|
"+r"(r11)
|
2018-04-07 03:48:06 +02:00
|
|
|
:
|
2018-04-12 01:13:42 +02:00
|
|
|
:"cc","r0","r1"
|
2018-04-07 03:48:06 +02:00
|
|
|
);
|
2018-04-12 01:13:42 +02:00
|
|
|
return (r2 | (uint16_t(r3) << 8)) | (uint32_t(r4) << 16);
|
|
|
|
}
|
2018-04-07 03:48:06 +02:00
|
|
|
|
2018-04-12 01:13:42 +02:00
|
|
|
#else
|
2018-04-07 03:48:06 +02:00
|
|
|
|
2018-04-12 01:13:42 +02:00
|
|
|
// For all the other 32bit CPUs
|
|
|
|
FORCE_INLINE void Stepper::_calc_bezier_curve_coeffs(const int32_t v0, const int32_t v1, const uint32_t av) {
|
|
|
|
// Calculate the Bézier coefficients
|
|
|
|
bezier_A = 768 * (v1 - v0);
|
|
|
|
bezier_B = 1920 * (v0 - v1);
|
|
|
|
bezier_C = 1280 * (v1 - v0);
|
|
|
|
bezier_F = 128 * v0;
|
|
|
|
bezier_AV = av;
|
|
|
|
}
|
2018-04-07 03:48:06 +02:00
|
|
|
|
2018-04-12 01:13:42 +02:00
|
|
|
FORCE_INLINE int32_t Stepper::_eval_bezier_curve(const uint32_t curr_step) {
|
|
|
|
#if defined(__ARM__) || defined(__thumb__)
|
|
|
|
|
|
|
|
// For ARM Cortex M3/M4 CPUs, we have the optimized assembler version, that takes 43 cycles to execute
|
2018-11-04 23:17:13 +01:00
|
|
|
uint32_t flo = 0;
|
|
|
|
uint32_t fhi = bezier_AV * curr_step;
|
|
|
|
uint32_t t = fhi;
|
|
|
|
int32_t alo = bezier_F;
|
|
|
|
int32_t ahi = 0;
|
|
|
|
int32_t A = bezier_A;
|
|
|
|
int32_t B = bezier_B;
|
|
|
|
int32_t C = bezier_C;
|
2018-04-12 01:13:42 +02:00
|
|
|
|
|
|
|
__asm__ __volatile__(
|
2018-05-08 12:10:27 +02:00
|
|
|
".syntax unified" "\n\t" // is to prevent CM0,CM1 non-unified syntax
|
|
|
|
A("lsrs %[ahi],%[alo],#1") // a = F << 31 1 cycles
|
|
|
|
A("lsls %[alo],%[alo],#31") // 1 cycles
|
|
|
|
A("umull %[flo],%[fhi],%[fhi],%[t]") // f *= t 5 cycles [fhi:flo=64bits]
|
|
|
|
A("umull %[flo],%[fhi],%[fhi],%[t]") // f>>=32; f*=t 5 cycles [fhi:flo=64bits]
|
|
|
|
A("lsrs %[flo],%[fhi],#1") // 1 cycles [31bits]
|
|
|
|
A("smlal %[alo],%[ahi],%[flo],%[C]") // a+=(f>>33)*C; 5 cycles
|
|
|
|
A("umull %[flo],%[fhi],%[fhi],%[t]") // f>>=32; f*=t 5 cycles [fhi:flo=64bits]
|
|
|
|
A("lsrs %[flo],%[fhi],#1") // 1 cycles [31bits]
|
|
|
|
A("smlal %[alo],%[ahi],%[flo],%[B]") // a+=(f>>33)*B; 5 cycles
|
|
|
|
A("umull %[flo],%[fhi],%[fhi],%[t]") // f>>=32; f*=t 5 cycles [fhi:flo=64bits]
|
|
|
|
A("lsrs %[flo],%[fhi],#1") // f>>=33; 1 cycles [31bits]
|
|
|
|
A("smlal %[alo],%[ahi],%[flo],%[A]") // a+=(f>>33)*A; 5 cycles
|
|
|
|
A("lsrs %[alo],%[ahi],#6") // a>>=38 1 cycles
|
2018-04-12 01:13:42 +02:00
|
|
|
: [alo]"+r"( alo ) ,
|
|
|
|
[flo]"+r"( flo ) ,
|
|
|
|
[fhi]"+r"( fhi ) ,
|
|
|
|
[ahi]"+r"( ahi ) ,
|
|
|
|
[A]"+r"( A ) , // <== Note: Even if A, B, C, and t registers are INPUT ONLY
|
|
|
|
[B]"+r"( B ) , // GCC does bad optimizations on the code if we list them as
|
|
|
|
[C]"+r"( C ) , // such, breaking this function. So, to avoid that problem,
|
|
|
|
[t]"+r"( t ) // we list all registers as input-outputs.
|
|
|
|
:
|
|
|
|
: "cc"
|
|
|
|
);
|
|
|
|
return alo;
|
|
|
|
|
|
|
|
#else
|
2018-04-07 03:48:06 +02:00
|
|
|
|
2018-04-12 01:13:42 +02:00
|
|
|
// For non ARM targets, we provide a fallback implementation. Really doubt it
|
|
|
|
// will be useful, unless the processor is fast and 32bit
|
|
|
|
|
|
|
|
uint32_t t = bezier_AV * curr_step; // t: Range 0 - 1^32 = 32 bits
|
|
|
|
uint64_t f = t;
|
|
|
|
f *= t; // Range 32*2 = 64 bits (unsigned)
|
|
|
|
f >>= 32; // Range 32 bits (unsigned)
|
|
|
|
f *= t; // Range 32*2 = 64 bits (unsigned)
|
|
|
|
f >>= 32; // Range 32 bits : f = t^3 (unsigned)
|
|
|
|
int64_t acc = (int64_t) bezier_F << 31; // Range 63 bits (signed)
|
|
|
|
acc += ((uint32_t) f >> 1) * (int64_t) bezier_C; // Range 29bits + 31 = 60bits (plus sign)
|
|
|
|
f *= t; // Range 32*2 = 64 bits
|
|
|
|
f >>= 32; // Range 32 bits : f = t^3 (unsigned)
|
|
|
|
acc += ((uint32_t) f >> 1) * (int64_t) bezier_B; // Range 29bits + 31 = 60bits (plus sign)
|
|
|
|
f *= t; // Range 32*2 = 64 bits
|
|
|
|
f >>= 32; // Range 32 bits : f = t^3 (unsigned)
|
|
|
|
acc += ((uint32_t) f >> 1) * (int64_t) bezier_A; // Range 28bits + 31 = 59bits (plus sign)
|
|
|
|
acc >>= (31 + 7); // Range 24bits (plus sign)
|
|
|
|
return (int32_t) acc;
|
|
|
|
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
#endif
|
2018-05-26 09:02:39 +02:00
|
|
|
#endif // S_CURVE_ACCELERATION
|
2018-04-07 03:48:06 +02:00
|
|
|
|
2016-10-09 17:06:31 +02:00
|
|
|
/**
|
|
|
|
* Stepper Driver Interrupt
|
|
|
|
*
|
|
|
|
* Directly pulses the stepper motors at high frequency.
|
|
|
|
*/
|
2017-06-18 01:36:10 +02:00
|
|
|
|
2019-03-11 02:43:59 +01:00
|
|
|
HAL_STEP_TIMER_ISR() {
|
2017-06-18 01:36:10 +02:00
|
|
|
HAL_timer_isr_prologue(STEP_TIMER_NUM);
|
2018-04-24 05:05:07 +02:00
|
|
|
|
2018-06-02 02:02:22 +02:00
|
|
|
Stepper::isr();
|
2018-04-24 05:05:07 +02:00
|
|
|
|
|
|
|
HAL_timer_isr_epilogue(STEP_TIMER_NUM);
|
2016-12-12 20:30:02 +01:00
|
|
|
}
|
2015-03-19 18:16:18 +01:00
|
|
|
|
2018-05-13 15:10:08 +02:00
|
|
|
#ifdef CPU_32_BIT
|
2018-05-13 16:29:08 +02:00
|
|
|
#define STEP_MULTIPLY(A,B) MultiU32X24toH32(A, B)
|
2018-05-13 15:10:08 +02:00
|
|
|
#else
|
2018-05-13 16:29:08 +02:00
|
|
|
#define STEP_MULTIPLY(A,B) MultiU24X32toH16(A, B)
|
2018-05-13 15:10:08 +02:00
|
|
|
#endif
|
|
|
|
|
2018-06-02 02:02:22 +02:00
|
|
|
void Stepper::isr() {
|
2020-02-14 12:14:37 +01:00
|
|
|
|
|
|
|
static uint32_t nextMainISR = 0; // Interval until the next main Stepper Pulse phase (0 = Now)
|
|
|
|
|
2018-06-03 05:59:21 +02:00
|
|
|
#ifndef __AVR__
|
|
|
|
// Disable interrupts, to avoid ISR preemption while we reprogram the period
|
|
|
|
// (AVR enters the ISR with global interrupts disabled, so no need to do it here)
|
|
|
|
DISABLE_ISRS();
|
|
|
|
#endif
|
2018-06-02 02:02:22 +02:00
|
|
|
|
|
|
|
// Program timer compare for the maximum period, so it does NOT
|
|
|
|
// flag an interrupt while this ISR is running - So changes from small
|
|
|
|
// periods to big periods are respected and the timer does not reset to 0
|
2019-06-29 11:39:38 +02:00
|
|
|
HAL_timer_set_compare(STEP_TIMER_NUM, hal_timer_t(HAL_TIMER_TYPE_MAX));
|
2018-04-07 03:48:06 +02:00
|
|
|
|
2018-05-26 08:00:13 +02:00
|
|
|
// Count of ticks for the next ISR
|
|
|
|
hal_timer_t next_isr_ticks = 0;
|
|
|
|
|
|
|
|
// Limit the amount of iterations
|
|
|
|
uint8_t max_loops = 10;
|
2018-05-27 08:49:59 +02:00
|
|
|
|
2018-05-26 08:00:13 +02:00
|
|
|
// We need this variable here to be able to use it in the following loop
|
|
|
|
hal_timer_t min_ticks;
|
|
|
|
do {
|
2018-06-03 03:39:00 +02:00
|
|
|
// Enable ISRs to reduce USART processing latency
|
2018-06-02 02:02:22 +02:00
|
|
|
ENABLE_ISRS();
|
|
|
|
|
2020-02-14 12:14:37 +01:00
|
|
|
if (!nextMainISR) pulse_phase_isr(); // 0 = Do coordinated axes Stepper pulses
|
2018-05-26 08:00:13 +02:00
|
|
|
|
|
|
|
#if ENABLED(LIN_ADVANCE)
|
2020-02-14 12:14:37 +01:00
|
|
|
if (!nextAdvanceISR) nextAdvanceISR = advance_isr(); // 0 = Do Linear Advance E Stepper pulses
|
2018-05-26 08:00:13 +02:00
|
|
|
#endif
|
|
|
|
|
2020-02-16 04:42:28 +01:00
|
|
|
#if ENABLED(INTEGRATED_BABYSTEPPING)
|
2020-02-24 12:29:13 +01:00
|
|
|
const bool is_babystep = (nextBabystepISR == 0); // 0 = Do Babystepping (XY)Z pulses
|
|
|
|
if (is_babystep) nextBabystepISR = babystepping_isr();
|
2020-02-16 04:42:28 +01:00
|
|
|
#endif
|
|
|
|
|
2018-05-26 08:00:13 +02:00
|
|
|
// ^== Time critical. NOTHING besides pulse generation should be above here!!!
|
|
|
|
|
2020-02-14 12:14:37 +01:00
|
|
|
if (!nextMainISR) nextMainISR = block_phase_isr(); // Manage acc/deceleration, get next block
|
2018-05-26 08:00:13 +02:00
|
|
|
|
2020-02-16 04:42:28 +01:00
|
|
|
#if ENABLED(INTEGRATED_BABYSTEPPING)
|
2020-02-24 12:29:13 +01:00
|
|
|
if (is_babystep) // Avoid ANY stepping too soon after baby-stepping
|
2020-02-17 00:46:41 +01:00
|
|
|
NOLESS(nextMainISR, (BABYSTEP_TICKS) / 8); // FULL STOP for 125µs after a baby-step
|
2020-02-16 04:42:28 +01:00
|
|
|
|
|
|
|
if (nextBabystepISR != BABYSTEP_NEVER) // Avoid baby-stepping too close to axis Stepping
|
2020-02-17 00:46:41 +01:00
|
|
|
NOLESS(nextBabystepISR, nextMainISR / 2); // TODO: Only look at axes enabled for baby-stepping
|
2020-02-16 04:42:28 +01:00
|
|
|
#endif
|
|
|
|
|
2020-02-14 12:14:37 +01:00
|
|
|
// Get the interval to the next ISR call
|
|
|
|
const uint32_t interval = _MIN(
|
2020-02-16 04:42:28 +01:00
|
|
|
nextMainISR // Time until the next Pulse / Block phase
|
2018-06-02 02:02:22 +02:00
|
|
|
#if ENABLED(LIN_ADVANCE)
|
2020-02-14 12:14:37 +01:00
|
|
|
, nextAdvanceISR // Come back early for Linear Advance?
|
2018-06-02 02:02:22 +02:00
|
|
|
#endif
|
2020-02-16 04:42:28 +01:00
|
|
|
#if ENABLED(INTEGRATED_BABYSTEPPING)
|
|
|
|
, nextBabystepISR // Come back early for Babystepping?
|
|
|
|
#endif
|
2020-02-14 12:14:37 +01:00
|
|
|
, uint32_t(HAL_TIMER_TYPE_MAX) // Come back in a very long time
|
|
|
|
);
|
2018-05-26 08:00:13 +02:00
|
|
|
|
2020-02-14 12:14:37 +01:00
|
|
|
//
|
|
|
|
// Compute remaining time for each ISR phase
|
|
|
|
// NEVER : The phase is idle
|
|
|
|
// Zero : The phase will occur on the next ISR call
|
|
|
|
// Non-zero : The phase will occur on a future ISR call
|
|
|
|
//
|
2018-05-26 08:00:13 +02:00
|
|
|
|
|
|
|
nextMainISR -= interval;
|
|
|
|
|
|
|
|
#if ENABLED(LIN_ADVANCE)
|
2018-06-03 05:59:21 +02:00
|
|
|
if (nextAdvanceISR != LA_ADV_NEVER) nextAdvanceISR -= interval;
|
2018-05-26 08:00:13 +02:00
|
|
|
#endif
|
|
|
|
|
2020-02-16 04:42:28 +01:00
|
|
|
#if ENABLED(INTEGRATED_BABYSTEPPING)
|
|
|
|
if (nextBabystepISR != BABYSTEP_NEVER) nextBabystepISR -= interval;
|
|
|
|
#endif
|
|
|
|
|
2018-05-26 08:00:13 +02:00
|
|
|
/**
|
|
|
|
* This needs to avoid a race-condition caused by interleaving
|
|
|
|
* of interrupts required by both the LA and Stepper algorithms.
|
|
|
|
*
|
|
|
|
* Assume the following tick times for stepper pulses:
|
|
|
|
* Stepper ISR (S): 1 1000 2000 3000 4000
|
|
|
|
* Linear Adv. (E): 10 1010 2010 3010 4010
|
|
|
|
*
|
|
|
|
* The current algorithm tries to interleave them, giving:
|
|
|
|
* 1:S 10:E 1000:S 1010:E 2000:S 2010:E 3000:S 3010:E 4000:S 4010:E
|
|
|
|
*
|
|
|
|
* Ideal timing would yield these delta periods:
|
|
|
|
* 1:S 9:E 990:S 10:E 990:S 10:E 990:S 10:E 990:S 10:E
|
|
|
|
*
|
|
|
|
* But, since each event must fire an ISR with a minimum duration, the
|
|
|
|
* minimum delta might be 900, so deltas under 900 get rounded up:
|
|
|
|
* 900:S d900:E d990:S d900:E d990:S d900:E d990:S d900:E d990:S d900:E
|
|
|
|
*
|
|
|
|
* It works, but divides the speed of all motors by half, leading to a sudden
|
|
|
|
* reduction to 1/2 speed! Such jumps in speed lead to lost steps (not even
|
|
|
|
* accounting for double/quad stepping, which makes it even worse).
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Compute the tick count for the next ISR
|
|
|
|
next_isr_ticks += interval;
|
|
|
|
|
2018-06-02 02:02:22 +02:00
|
|
|
/**
|
2018-06-03 03:39:00 +02:00
|
|
|
* The following section must be done with global interrupts disabled.
|
2018-06-02 02:02:22 +02:00
|
|
|
* We want nothing to interrupt it, as that could mess the calculations
|
|
|
|
* we do for the next value to program in the period register of the
|
|
|
|
* stepper timer and lead to skipped ISRs (if the value we happen to program
|
|
|
|
* is less than the current count due to something preempting between the
|
|
|
|
* read and the write of the new period value).
|
|
|
|
*/
|
|
|
|
DISABLE_ISRS();
|
|
|
|
|
2018-05-26 08:00:13 +02:00
|
|
|
/**
|
|
|
|
* Get the current tick value + margin
|
|
|
|
* Assuming at least 6µs between calls to this ISR...
|
2018-06-03 05:59:21 +02:00
|
|
|
* On AVR the ISR epilogue+prologue is estimated at 100 instructions - Give 8µs as margin
|
|
|
|
* On ARM the ISR epilogue+prologue is estimated at 20 instructions - Give 1µs as margin
|
2018-05-26 08:00:13 +02:00
|
|
|
*/
|
2018-06-03 05:59:21 +02:00
|
|
|
min_ticks = HAL_timer_get_count(STEP_TIMER_NUM) + hal_timer_t(
|
|
|
|
#ifdef __AVR__
|
|
|
|
8
|
|
|
|
#else
|
|
|
|
1
|
|
|
|
#endif
|
2018-06-12 06:04:26 +02:00
|
|
|
* (STEPPER_TIMER_TICKS_PER_US)
|
2018-06-03 05:59:21 +02:00
|
|
|
);
|
2018-05-26 08:00:13 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* NB: If for some reason the stepper monopolizes the MPU, eventually the
|
|
|
|
* timer will wrap around (and so will 'next_isr_ticks'). So, limit the
|
|
|
|
* loop to 10 iterations. Beyond that, there's no way to ensure correct pulse
|
|
|
|
* timing, since the MCU isn't fast enough.
|
|
|
|
*/
|
|
|
|
if (!--max_loops) next_isr_ticks = min_ticks;
|
|
|
|
|
|
|
|
// Advance pulses if not enough time to wait for the next ISR
|
|
|
|
} while (next_isr_ticks < min_ticks);
|
|
|
|
|
2018-06-02 02:02:22 +02:00
|
|
|
// Now 'next_isr_ticks' contains the period to the next Stepper ISR - And we are
|
|
|
|
// sure that the time has not arrived yet - Warrantied by the scheduler
|
|
|
|
|
|
|
|
// Set the next ISR to fire at the proper time
|
|
|
|
HAL_timer_set_compare(STEP_TIMER_NUM, hal_timer_t(next_isr_ticks));
|
|
|
|
|
|
|
|
// Don't forget to finally reenable interrupts
|
|
|
|
ENABLE_ISRS();
|
2018-05-09 07:17:53 +02:00
|
|
|
}
|
2016-11-15 16:41:13 +01:00
|
|
|
|
2020-01-02 05:06:50 +01:00
|
|
|
#define ISR_PULSE_CONTROL (MINIMUM_STEPPER_PULSE || MAXIMUM_STEPPER_RATE)
|
|
|
|
#define ISR_MULTI_STEPS (ISR_PULSE_CONTROL && DISABLED(I2S_STEPPER_STREAM))
|
|
|
|
|
2018-05-26 08:00:13 +02:00
|
|
|
/**
|
|
|
|
* This phase of the ISR should ONLY create the pulses for the steppers.
|
|
|
|
* This prevents jitter caused by the interval between the start of the
|
|
|
|
* interrupt and the start of the pulses. DON'T add any logic ahead of the
|
|
|
|
* call to this method that might cause variation in the timing. The aim
|
|
|
|
* is to keep pulse timing as regular as possible.
|
|
|
|
*/
|
2020-02-14 12:14:37 +01:00
|
|
|
void Stepper::pulse_phase_isr() {
|
2011-11-13 20:42:08 +01:00
|
|
|
|
2018-05-16 09:08:43 +02:00
|
|
|
// If we must abort the current block, do so!
|
|
|
|
if (abort_current_block) {
|
|
|
|
abort_current_block = false;
|
|
|
|
if (current_block) {
|
2018-05-25 02:28:15 +02:00
|
|
|
axis_did_move = 0;
|
2019-05-09 18:45:55 +02:00
|
|
|
current_block = nullptr;
|
2018-05-16 09:08:43 +02:00
|
|
|
planner.discard_current_block();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-09 07:17:53 +02:00
|
|
|
// If there is no current block, do nothing
|
|
|
|
if (!current_block) return;
|
2015-04-24 08:03:17 +02:00
|
|
|
|
2018-06-03 19:24:23 +02:00
|
|
|
// Count of pending loops and events for this iteration
|
|
|
|
const uint32_t pending_events = step_event_count - step_events_completed;
|
2019-07-06 01:01:21 +02:00
|
|
|
uint8_t events_to_do = _MIN(pending_events, steps_per_isr);
|
2018-06-03 19:24:23 +02:00
|
|
|
|
|
|
|
// Just update the value we will get at the end of the loop
|
|
|
|
step_events_completed += events_to_do;
|
|
|
|
|
2016-09-22 00:28:54 +02:00
|
|
|
// Take multiple steps per interrupt (For high speed moves)
|
2020-01-02 05:06:50 +01:00
|
|
|
#if ISR_MULTI_STEPS
|
|
|
|
bool firstStep = true;
|
2020-02-10 23:58:21 +01:00
|
|
|
USING_TIMED_PULSE();
|
2020-01-02 05:06:50 +01:00
|
|
|
#endif
|
2019-12-19 09:38:48 +01:00
|
|
|
xyze_bool_t step_needed{0};
|
2013-08-01 15:06:39 +02:00
|
|
|
|
2019-12-19 09:38:48 +01:00
|
|
|
do {
|
2020-02-10 23:58:21 +01:00
|
|
|
#define _APPLY_STEP(AXIS, INV, ALWAYS) AXIS ##_APPLY_STEP(INV, ALWAYS)
|
2016-09-22 00:28:54 +02:00
|
|
|
#define _INVERT_STEP_PIN(AXIS) INVERT_## AXIS ##_STEP_PIN
|
2016-08-28 06:38:05 +02:00
|
|
|
|
2020-02-09 04:01:57 +01:00
|
|
|
// Determine if a pulse is needed using Bresenham
|
2019-12-19 09:38:48 +01:00
|
|
|
#define PULSE_PREP(AXIS) do{ \
|
|
|
|
delta_error[_AXIS(AXIS)] += advance_dividend[_AXIS(AXIS)]; \
|
|
|
|
step_needed[_AXIS(AXIS)] = (delta_error[_AXIS(AXIS)] >= 0); \
|
|
|
|
if (step_needed[_AXIS(AXIS)]) { \
|
|
|
|
count_position[_AXIS(AXIS)] += count_direction[_AXIS(AXIS)]; \
|
|
|
|
delta_error[_AXIS(AXIS)] -= advance_divisor; \
|
|
|
|
} \
|
|
|
|
}while(0)
|
|
|
|
|
2018-06-03 05:59:21 +02:00
|
|
|
// Start an active pulse, if Bresenham says so, and update position
|
2018-03-06 06:06:57 +01:00
|
|
|
#define PULSE_START(AXIS) do{ \
|
2019-12-19 09:38:48 +01:00
|
|
|
if (step_needed[_AXIS(AXIS)]) { \
|
2020-02-10 23:58:21 +01:00
|
|
|
_APPLY_STEP(AXIS, !_INVERT_STEP_PIN(AXIS), 0); \
|
2018-03-11 04:40:45 +01:00
|
|
|
} \
|
|
|
|
}while(0)
|
2018-03-06 06:06:57 +01:00
|
|
|
|
2018-06-03 05:59:21 +02:00
|
|
|
// Stop an active pulse, if any, and adjust error term
|
|
|
|
#define PULSE_STOP(AXIS) do { \
|
2019-12-19 09:38:48 +01:00
|
|
|
if (step_needed[_AXIS(AXIS)]) { \
|
2020-02-10 23:58:21 +01:00
|
|
|
_APPLY_STEP(AXIS, _INVERT_STEP_PIN(AXIS), 0); \
|
2018-06-03 05:59:21 +02:00
|
|
|
} \
|
|
|
|
}while(0)
|
2016-09-24 06:59:16 +02:00
|
|
|
|
2019-12-19 09:38:48 +01:00
|
|
|
// Determine if pulses are needed
|
2016-09-22 00:28:54 +02:00
|
|
|
#if HAS_X_STEP
|
2019-12-19 09:38:48 +01:00
|
|
|
PULSE_PREP(X);
|
2016-09-22 00:28:54 +02:00
|
|
|
#endif
|
|
|
|
#if HAS_Y_STEP
|
2019-12-19 09:38:48 +01:00
|
|
|
PULSE_PREP(Y);
|
2016-09-22 00:28:54 +02:00
|
|
|
#endif
|
|
|
|
#if HAS_Z_STEP
|
2019-12-19 09:38:48 +01:00
|
|
|
PULSE_PREP(Z);
|
2016-09-22 00:28:54 +02:00
|
|
|
#endif
|
2015-03-07 07:14:34 +01:00
|
|
|
|
2019-03-17 05:43:06 +01:00
|
|
|
#if EITHER(LIN_ADVANCE, MIXING_EXTRUDER)
|
2019-09-29 11:25:39 +02:00
|
|
|
delta_error.e += advance_dividend.e;
|
|
|
|
if (delta_error.e >= 0) {
|
|
|
|
count_position.e += count_direction.e;
|
2018-10-16 10:38:57 +02:00
|
|
|
#if ENABLED(LIN_ADVANCE)
|
2019-09-29 11:25:39 +02:00
|
|
|
delta_error.e -= advance_divisor;
|
2018-10-16 10:38:57 +02:00
|
|
|
// Don't step E here - But remember the number of steps to perform
|
|
|
|
motor_direction(E_AXIS) ? --LA_steps : ++LA_steps;
|
2019-12-19 09:38:48 +01:00
|
|
|
#else
|
2020-02-14 12:14:37 +01:00
|
|
|
step_needed.e = true;
|
2018-10-16 10:38:57 +02:00
|
|
|
#endif
|
|
|
|
}
|
2019-12-19 09:38:48 +01:00
|
|
|
#elif HAS_E0_STEP
|
|
|
|
PULSE_PREP(E);
|
|
|
|
#endif
|
|
|
|
|
2020-01-02 05:06:50 +01:00
|
|
|
#if ISR_MULTI_STEPS
|
2019-12-19 09:38:48 +01:00
|
|
|
if (firstStep)
|
|
|
|
firstStep = false;
|
|
|
|
else
|
|
|
|
AWAIT_LOW_PULSE();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Pulse start
|
|
|
|
#if HAS_X_STEP
|
|
|
|
PULSE_START(X);
|
|
|
|
#endif
|
|
|
|
#if HAS_Y_STEP
|
|
|
|
PULSE_START(Y);
|
|
|
|
#endif
|
|
|
|
#if HAS_Z_STEP
|
|
|
|
PULSE_START(Z);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if DISABLED(LIN_ADVANCE)
|
|
|
|
#if ENABLED(MIXING_EXTRUDER)
|
2020-01-09 03:00:06 +01:00
|
|
|
if (step_needed.e) E_STEP_WRITE(mixer.get_next_stepper(), !INVERT_E_STEP_PIN);
|
2019-12-19 09:38:48 +01:00
|
|
|
#elif HAS_E0_STEP
|
2016-09-22 00:28:54 +02:00
|
|
|
PULSE_START(E);
|
2016-08-28 02:38:24 +02:00
|
|
|
#endif
|
2018-10-16 10:38:57 +02:00
|
|
|
#endif
|
2016-06-29 00:06:56 +02:00
|
|
|
|
2019-02-10 12:40:31 +01:00
|
|
|
#if ENABLED(I2S_STEPPER_STREAM)
|
|
|
|
i2s_push_sample();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// TODO: need to deal with MINIMUM_STEPPER_PULSE over i2s
|
2020-01-02 05:06:50 +01:00
|
|
|
#if ISR_MULTI_STEPS
|
2019-12-19 09:38:48 +01:00
|
|
|
START_HIGH_PULSE();
|
|
|
|
AWAIT_HIGH_PULSE();
|
2016-05-08 21:16:26 +02:00
|
|
|
#endif
|
|
|
|
|
2018-06-03 05:59:21 +02:00
|
|
|
// Pulse stop
|
2016-09-22 00:28:54 +02:00
|
|
|
#if HAS_X_STEP
|
|
|
|
PULSE_STOP(X);
|
|
|
|
#endif
|
|
|
|
#if HAS_Y_STEP
|
|
|
|
PULSE_STOP(Y);
|
|
|
|
#endif
|
|
|
|
#if HAS_Z_STEP
|
|
|
|
PULSE_STOP(Z);
|
|
|
|
#endif
|
2013-08-01 15:06:39 +02:00
|
|
|
|
2017-10-09 11:25:18 +02:00
|
|
|
#if DISABLED(LIN_ADVANCE)
|
2016-09-22 00:28:54 +02:00
|
|
|
#if ENABLED(MIXING_EXTRUDER)
|
2019-09-29 11:25:39 +02:00
|
|
|
if (delta_error.e >= 0) {
|
|
|
|
delta_error.e -= advance_divisor;
|
2018-10-16 10:38:57 +02:00
|
|
|
E_STEP_WRITE(mixer.get_stepper(), INVERT_E_STEP_PIN);
|
2016-09-22 00:28:54 +02:00
|
|
|
}
|
2020-02-14 12:14:37 +01:00
|
|
|
#elif HAS_E0_STEP
|
|
|
|
PULSE_STOP(E);
|
|
|
|
#endif
|
|
|
|
#endif
|
2017-04-11 18:11:17 +02:00
|
|
|
|
2020-01-02 05:06:50 +01:00
|
|
|
#if ISR_MULTI_STEPS
|
2019-12-19 09:38:48 +01:00
|
|
|
if (events_to_do) START_LOW_PULSE();
|
|
|
|
#endif
|
2018-06-03 19:24:23 +02:00
|
|
|
|
2019-12-19 09:38:48 +01:00
|
|
|
} while (--events_to_do);
|
2018-05-09 07:17:53 +02:00
|
|
|
}
|
2011-11-13 20:42:08 +01:00
|
|
|
|
2018-05-09 07:17:53 +02:00
|
|
|
// This is the last half of the stepper interrupt: This one processes and
|
|
|
|
// properly schedules blocks from the planner. This is executed after creating
|
|
|
|
// the step pulses, so it is not time critical, as pulses are already done.
|
2016-05-04 21:10:42 +02:00
|
|
|
|
2020-02-14 12:14:37 +01:00
|
|
|
uint32_t Stepper::block_phase_isr() {
|
2015-10-03 08:08:58 +02:00
|
|
|
|
2020-02-14 12:14:37 +01:00
|
|
|
// If no queued movements, just wait 1ms for the next block
|
|
|
|
uint32_t interval = (STEPPER_TIMER_RATE) / 1000UL;
|
2017-01-22 01:10:02 +01:00
|
|
|
|
2018-05-09 07:17:53 +02:00
|
|
|
// If there is a current block
|
|
|
|
if (current_block) {
|
2017-01-22 01:10:02 +01:00
|
|
|
|
2018-06-03 05:59:21 +02:00
|
|
|
// If current block is finished, reset pointer
|
|
|
|
if (step_events_completed >= step_event_count) {
|
2019-05-04 06:53:15 +02:00
|
|
|
#ifdef FILAMENT_RUNOUT_DISTANCE_MM
|
2018-11-14 18:45:57 +01:00
|
|
|
runout.block_completed(current_block);
|
2018-10-16 14:28:52 +02:00
|
|
|
#endif
|
2018-06-03 05:59:21 +02:00
|
|
|
axis_did_move = 0;
|
2019-05-09 18:45:55 +02:00
|
|
|
current_block = nullptr;
|
2018-06-03 05:59:21 +02:00
|
|
|
planner.discard_current_block();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// Step events not completed yet...
|
2015-10-03 08:08:58 +02:00
|
|
|
|
2018-06-03 05:59:21 +02:00
|
|
|
// Are we in acceleration phase ?
|
|
|
|
if (step_events_completed <= accelerate_until) { // Calculate new timer value
|
2018-05-09 07:17:53 +02:00
|
|
|
|
2018-06-03 05:59:21 +02:00
|
|
|
#if ENABLED(S_CURVE_ACCELERATION)
|
|
|
|
// Get the next speed to use (Jerk limited!)
|
|
|
|
uint32_t acc_step_rate =
|
|
|
|
acceleration_time < current_block->acceleration_time
|
|
|
|
? _eval_bezier_curve(acceleration_time)
|
|
|
|
: current_block->cruise_rate;
|
|
|
|
#else
|
|
|
|
acc_step_rate = STEP_MULTIPLY(acceleration_time, current_block->acceleration_rate) + current_block->initial_rate;
|
|
|
|
NOMORE(acc_step_rate, current_block->nominal_rate);
|
|
|
|
#endif
|
2018-05-09 07:17:53 +02:00
|
|
|
|
2018-06-03 05:59:21 +02:00
|
|
|
// acc_step_rate is in steps/second
|
2018-05-09 07:17:53 +02:00
|
|
|
|
2018-06-03 05:59:21 +02:00
|
|
|
// step_rate to timer interval and steps per stepper isr
|
2020-02-14 12:14:37 +01:00
|
|
|
interval = calc_timer_interval(acc_step_rate, &steps_per_isr);
|
2018-06-03 05:59:21 +02:00
|
|
|
acceleration_time += interval;
|
2018-05-09 07:17:53 +02:00
|
|
|
|
2018-06-03 05:59:21 +02:00
|
|
|
#if ENABLED(LIN_ADVANCE)
|
2020-02-14 12:14:37 +01:00
|
|
|
// Fire ISR if final adv_rate is reached
|
|
|
|
if (LA_steps && (!LA_use_advance_lead || LA_isr_rate != current_block->advance_speed))
|
|
|
|
initiateLA();
|
|
|
|
#endif
|
2018-06-03 05:59:21 +02:00
|
|
|
}
|
|
|
|
// Are we in Deceleration phase ?
|
|
|
|
else if (step_events_completed > decelerate_after) {
|
|
|
|
uint32_t step_rate;
|
|
|
|
|
|
|
|
#if ENABLED(S_CURVE_ACCELERATION)
|
|
|
|
// If this is the 1st time we process the 2nd half of the trapezoid...
|
|
|
|
if (!bezier_2nd_half) {
|
|
|
|
// Initialize the Bézier speed curve
|
|
|
|
_calc_bezier_curve_coeffs(current_block->cruise_rate, current_block->final_rate, current_block->deceleration_time_inverse);
|
|
|
|
bezier_2nd_half = true;
|
|
|
|
// The first point starts at cruise rate. Just save evaluation of the Bézier curve
|
|
|
|
step_rate = current_block->cruise_rate;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// Calculate the next speed to use
|
|
|
|
step_rate = deceleration_time < current_block->deceleration_time
|
|
|
|
? _eval_bezier_curve(deceleration_time)
|
|
|
|
: current_block->final_rate;
|
|
|
|
}
|
|
|
|
#else
|
2018-05-09 07:17:53 +02:00
|
|
|
|
2018-06-03 05:59:21 +02:00
|
|
|
// Using the old trapezoidal control
|
|
|
|
step_rate = STEP_MULTIPLY(deceleration_time, current_block->acceleration_rate);
|
|
|
|
if (step_rate < acc_step_rate) { // Still decelerating?
|
|
|
|
step_rate = acc_step_rate - step_rate;
|
|
|
|
NOLESS(step_rate, current_block->final_rate);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
step_rate = current_block->final_rate;
|
|
|
|
#endif
|
2018-05-09 07:17:53 +02:00
|
|
|
|
2018-06-03 05:59:21 +02:00
|
|
|
// step_rate is in steps/second
|
2018-05-09 07:17:53 +02:00
|
|
|
|
2018-06-03 05:59:21 +02:00
|
|
|
// step_rate to timer interval and steps per stepper isr
|
2020-02-14 12:14:37 +01:00
|
|
|
interval = calc_timer_interval(step_rate, &steps_per_isr);
|
2018-06-03 05:59:21 +02:00
|
|
|
deceleration_time += interval;
|
2018-05-09 07:17:53 +02:00
|
|
|
|
2018-06-03 05:59:21 +02:00
|
|
|
#if ENABLED(LIN_ADVANCE)
|
|
|
|
if (LA_use_advance_lead) {
|
2018-09-09 07:04:14 +02:00
|
|
|
// Wake up eISR on first deceleration loop and fire ISR if final adv_rate is reached
|
|
|
|
if (step_events_completed <= decelerate_after + steps_per_isr || (LA_steps && LA_isr_rate != current_block->advance_speed)) {
|
2020-02-14 12:14:37 +01:00
|
|
|
initiateLA();
|
2018-06-03 05:59:21 +02:00
|
|
|
LA_isr_rate = current_block->advance_speed;
|
|
|
|
}
|
|
|
|
}
|
2020-02-14 12:14:37 +01:00
|
|
|
else if (LA_steps) initiateLA();
|
|
|
|
#endif
|
2018-06-03 05:59:21 +02:00
|
|
|
}
|
|
|
|
// We must be in cruise phase otherwise
|
|
|
|
else {
|
2018-05-09 07:17:53 +02:00
|
|
|
|
2018-06-03 05:59:21 +02:00
|
|
|
#if ENABLED(LIN_ADVANCE)
|
|
|
|
// If there are any esteps, fire the next advance_isr "now"
|
2020-02-14 12:14:37 +01:00
|
|
|
if (LA_steps && LA_isr_rate != current_block->advance_speed) initiateLA();
|
2018-06-03 05:59:21 +02:00
|
|
|
#endif
|
2018-05-09 07:17:53 +02:00
|
|
|
|
2018-06-03 05:59:21 +02:00
|
|
|
// Calculate the ticks_nominal for this nominal speed, if not done yet
|
|
|
|
if (ticks_nominal < 0) {
|
|
|
|
// step_rate to timer interval and loops for the nominal speed
|
2020-02-14 12:14:37 +01:00
|
|
|
ticks_nominal = calc_timer_interval(current_block->nominal_rate, &steps_per_isr);
|
2018-06-03 05:59:21 +02:00
|
|
|
}
|
2018-05-09 07:17:53 +02:00
|
|
|
|
2018-06-03 05:59:21 +02:00
|
|
|
// The timer interval is just the nominal value for the nominal speed
|
|
|
|
interval = ticks_nominal;
|
|
|
|
}
|
2018-05-09 07:17:53 +02:00
|
|
|
}
|
2016-09-22 00:28:54 +02:00
|
|
|
}
|
2018-04-07 03:48:06 +02:00
|
|
|
|
2018-05-09 07:17:53 +02:00
|
|
|
// If there is no current block at this point, attempt to pop one from the buffer
|
|
|
|
// and prepare its movement
|
|
|
|
if (!current_block) {
|
|
|
|
|
|
|
|
// Anything in the buffer?
|
|
|
|
if ((current_block = planner.get_current_block())) {
|
2018-04-07 03:48:06 +02:00
|
|
|
|
2018-05-09 07:17:53 +02:00
|
|
|
// Sync block? Sync the stepper counts and return
|
|
|
|
while (TEST(current_block->flag, BLOCK_BIT_SYNC_POSITION)) {
|
2019-09-29 11:25:39 +02:00
|
|
|
_set_position(current_block->position);
|
2018-05-09 07:17:53 +02:00
|
|
|
planner.discard_current_block();
|
|
|
|
|
|
|
|
// Try to get a new block
|
|
|
|
if (!(current_block = planner.get_current_block()))
|
|
|
|
return interval; // No more queued movements!
|
2018-04-07 03:48:06 +02:00
|
|
|
}
|
|
|
|
|
2019-10-15 23:10:20 +02:00
|
|
|
#if HAS_CUTTER
|
|
|
|
cutter.apply_power(current_block->cutter_power);
|
|
|
|
#endif
|
|
|
|
|
2019-09-11 01:52:41 +02:00
|
|
|
#if ENABLED(POWER_LOSS_RECOVERY)
|
|
|
|
recovery.info.sdpos = current_block->sdpos;
|
|
|
|
#endif
|
|
|
|
|
2018-05-23 10:45:25 +02:00
|
|
|
// Flag all moving axes for proper endstop handling
|
|
|
|
|
|
|
|
#if IS_CORE
|
|
|
|
// Define conditions for checking endstops
|
|
|
|
#define S_(N) current_block->steps[CORE_AXIS_##N]
|
2018-05-24 10:02:44 +02:00
|
|
|
#define D_(N) TEST(current_block->direction_bits, CORE_AXIS_##N)
|
2018-05-23 10:45:25 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if CORE_IS_XY || CORE_IS_XZ
|
|
|
|
/**
|
|
|
|
* Head direction in -X axis for CoreXY and CoreXZ bots.
|
|
|
|
*
|
|
|
|
* If steps differ, both axes are moving.
|
|
|
|
* If DeltaA == -DeltaB, the movement is only in the 2nd axis (Y or Z, handled below)
|
|
|
|
* If DeltaA == DeltaB, the movement is only in the 1st axis (X)
|
|
|
|
*/
|
2019-03-17 05:43:06 +01:00
|
|
|
#if EITHER(COREXY, COREXZ)
|
2018-05-23 10:45:25 +02:00
|
|
|
#define X_CMP ==
|
|
|
|
#else
|
|
|
|
#define X_CMP !=
|
|
|
|
#endif
|
|
|
|
#define X_MOVE_TEST ( S_(1) != S_(2) || (S_(1) > 0 && D_(1) X_CMP D_(2)) )
|
|
|
|
#else
|
2019-09-29 11:25:39 +02:00
|
|
|
#define X_MOVE_TEST !!current_block->steps.a
|
2018-05-23 10:45:25 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if CORE_IS_XY || CORE_IS_YZ
|
|
|
|
/**
|
|
|
|
* Head direction in -Y axis for CoreXY / CoreYZ bots.
|
|
|
|
*
|
|
|
|
* If steps differ, both axes are moving
|
|
|
|
* If DeltaA == DeltaB, the movement is only in the 1st axis (X or Y)
|
|
|
|
* If DeltaA == -DeltaB, the movement is only in the 2nd axis (Y or Z)
|
|
|
|
*/
|
2019-03-17 05:43:06 +01:00
|
|
|
#if EITHER(COREYX, COREYZ)
|
2018-05-23 10:45:25 +02:00
|
|
|
#define Y_CMP ==
|
|
|
|
#else
|
|
|
|
#define Y_CMP !=
|
|
|
|
#endif
|
|
|
|
#define Y_MOVE_TEST ( S_(1) != S_(2) || (S_(1) > 0 && D_(1) Y_CMP D_(2)) )
|
|
|
|
#else
|
2019-09-29 11:25:39 +02:00
|
|
|
#define Y_MOVE_TEST !!current_block->steps.b
|
2018-05-23 10:45:25 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if CORE_IS_XZ || CORE_IS_YZ
|
|
|
|
/**
|
|
|
|
* Head direction in -Z axis for CoreXZ or CoreYZ bots.
|
|
|
|
*
|
|
|
|
* If steps differ, both axes are moving
|
|
|
|
* If DeltaA == DeltaB, the movement is only in the 1st axis (X or Y, already handled above)
|
|
|
|
* If DeltaA == -DeltaB, the movement is only in the 2nd axis (Z)
|
|
|
|
*/
|
2019-03-17 05:43:06 +01:00
|
|
|
#if EITHER(COREZX, COREZY)
|
2018-05-23 10:45:25 +02:00
|
|
|
#define Z_CMP ==
|
|
|
|
#else
|
|
|
|
#define Z_CMP !=
|
|
|
|
#endif
|
|
|
|
#define Z_MOVE_TEST ( S_(1) != S_(2) || (S_(1) > 0 && D_(1) Z_CMP D_(2)) )
|
|
|
|
#else
|
2019-09-29 11:25:39 +02:00
|
|
|
#define Z_MOVE_TEST !!current_block->steps.c
|
2018-05-23 10:45:25 +02:00
|
|
|
#endif
|
|
|
|
|
2018-05-25 02:08:07 +02:00
|
|
|
uint8_t axis_bits = 0;
|
|
|
|
if (X_MOVE_TEST) SBI(axis_bits, A_AXIS);
|
|
|
|
if (Y_MOVE_TEST) SBI(axis_bits, B_AXIS);
|
|
|
|
if (Z_MOVE_TEST) SBI(axis_bits, C_AXIS);
|
2019-09-29 11:25:39 +02:00
|
|
|
//if (!!current_block->steps.e) SBI(axis_bits, E_AXIS);
|
|
|
|
//if (!!current_block->steps.a) SBI(axis_bits, X_HEAD);
|
|
|
|
//if (!!current_block->steps.b) SBI(axis_bits, Y_HEAD);
|
|
|
|
//if (!!current_block->steps.c) SBI(axis_bits, Z_HEAD);
|
2018-05-25 02:08:07 +02:00
|
|
|
axis_did_move = axis_bits;
|
2018-05-09 07:17:53 +02:00
|
|
|
|
2018-06-03 05:59:21 +02:00
|
|
|
// No acceleration / deceleration time elapsed so far
|
|
|
|
acceleration_time = deceleration_time = 0;
|
|
|
|
|
2020-02-14 12:14:37 +01:00
|
|
|
uint8_t oversampling = 0; // Assume no axis smoothing (via oversampling)
|
2018-06-28 01:11:16 +02:00
|
|
|
|
2018-06-03 05:59:21 +02:00
|
|
|
#if ENABLED(ADAPTIVE_STEP_SMOOTHING)
|
2020-02-14 12:14:37 +01:00
|
|
|
// Decide if axis smoothing is possible
|
2018-06-03 05:59:21 +02:00
|
|
|
uint32_t max_rate = current_block->nominal_rate; // Get the maximum rate (maximum event speed)
|
2020-02-14 12:14:37 +01:00
|
|
|
while (max_rate < MIN_STEP_ISR_FREQUENCY) { // As long as more ISRs are possible...
|
|
|
|
max_rate <<= 1; // Try to double the rate
|
|
|
|
if (max_rate >= MAX_STEP_ISR_FREQUENCY_1X) break; // Don't exceed the estimated ISR limit
|
|
|
|
++oversampling; // Increase the oversampling (used for left-shift)
|
2018-06-03 05:59:21 +02:00
|
|
|
}
|
2020-02-14 12:14:37 +01:00
|
|
|
oversampling_factor = oversampling; // For all timer interval calculations
|
2018-06-03 05:59:21 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
// Based on the oversampling factor, do the calculations
|
|
|
|
step_event_count = current_block->step_event_count << oversampling;
|
|
|
|
|
|
|
|
// Initialize Bresenham delta errors to 1/2
|
2019-09-29 11:25:39 +02:00
|
|
|
delta_error = -int32_t(step_event_count);
|
2018-06-03 05:59:21 +02:00
|
|
|
|
2019-09-29 11:25:39 +02:00
|
|
|
// Calculate Bresenham dividends and divisors
|
|
|
|
advance_dividend = current_block->steps << 1;
|
2018-06-03 05:59:21 +02:00
|
|
|
advance_divisor = step_event_count << 1;
|
|
|
|
|
|
|
|
// No step events completed so far
|
|
|
|
step_events_completed = 0;
|
|
|
|
|
|
|
|
// Compute the acceleration and deceleration points
|
|
|
|
accelerate_until = current_block->accelerate_until << oversampling;
|
|
|
|
decelerate_after = current_block->decelerate_after << oversampling;
|
|
|
|
|
|
|
|
#if ENABLED(MIXING_EXTRUDER)
|
2018-10-16 10:38:57 +02:00
|
|
|
MIXER_STEPPER_SETUP();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if EXTRUDERS > 1
|
|
|
|
stepper_extruder = current_block->extruder;
|
2018-06-03 05:59:21 +02:00
|
|
|
#endif
|
|
|
|
|
2018-05-16 09:08:43 +02:00
|
|
|
// Initialize the trapezoid generator from the current block.
|
2018-05-09 07:17:53 +02:00
|
|
|
#if ENABLED(LIN_ADVANCE)
|
2018-06-03 05:59:21 +02:00
|
|
|
#if DISABLED(MIXING_EXTRUDER) && E_STEPPERS > 1
|
|
|
|
// If the now active extruder wasn't in use during the last move, its pressure is most likely gone.
|
2018-10-16 10:38:57 +02:00
|
|
|
if (stepper_extruder != last_moved_extruder) LA_current_adv_steps = 0;
|
2018-05-09 07:17:53 +02:00
|
|
|
#endif
|
2016-09-22 00:28:54 +02:00
|
|
|
|
2018-06-03 05:59:21 +02:00
|
|
|
if ((LA_use_advance_lead = current_block->use_advance_lead)) {
|
|
|
|
LA_final_adv_steps = current_block->final_adv_steps;
|
|
|
|
LA_max_adv_steps = current_block->max_adv_steps;
|
2020-02-14 12:14:37 +01:00
|
|
|
initiateLA(); // Start the ISR
|
2018-09-09 07:04:14 +02:00
|
|
|
LA_isr_rate = current_block->advance_speed;
|
2018-05-09 07:17:53 +02:00
|
|
|
}
|
2018-09-09 07:04:14 +02:00
|
|
|
else LA_isr_rate = LA_ADV_NEVER;
|
2018-05-09 07:17:53 +02:00
|
|
|
#endif
|
|
|
|
|
2019-01-24 02:06:54 +01:00
|
|
|
if (
|
2020-01-14 01:47:30 +01:00
|
|
|
#if HAS_L64XX
|
|
|
|
true // Always set direction for L64xx (This also enables the chips)
|
2019-01-24 02:06:54 +01:00
|
|
|
#else
|
|
|
|
current_block->direction_bits != last_direction_bits
|
2018-10-16 10:38:57 +02:00
|
|
|
#if DISABLED(MIXING_EXTRUDER)
|
|
|
|
|| stepper_extruder != last_moved_extruder
|
|
|
|
#endif
|
2019-01-24 02:06:54 +01:00
|
|
|
#endif
|
2018-06-03 05:59:21 +02:00
|
|
|
) {
|
2018-05-09 07:17:53 +02:00
|
|
|
last_direction_bits = current_block->direction_bits;
|
2018-10-16 10:38:57 +02:00
|
|
|
#if EXTRUDERS > 1
|
|
|
|
last_moved_extruder = stepper_extruder;
|
|
|
|
#endif
|
2020-01-14 01:47:30 +01:00
|
|
|
|
|
|
|
#if HAS_L64XX
|
|
|
|
L64XX_OK_to_power_up = true;
|
|
|
|
#endif
|
2018-10-24 23:40:06 +02:00
|
|
|
set_directions();
|
2018-04-07 03:48:06 +02:00
|
|
|
}
|
2018-05-13 15:10:08 +02:00
|
|
|
|
2018-05-16 09:08:43 +02:00
|
|
|
// At this point, we must ensure the movement about to execute isn't
|
|
|
|
// trying to force the head against a limit switch. If using interrupt-
|
|
|
|
// driven change detection, and already against a limit then no call to
|
|
|
|
// the endstop_triggered method will be done and the movement will be
|
|
|
|
// done against the endstop. So, check the limits here: If the movement
|
|
|
|
// is against the limits, the block will be marked as to be killed, and
|
|
|
|
// on the next call to this ISR, will be discarded.
|
2018-06-22 03:14:16 +02:00
|
|
|
endstops.update();
|
2018-05-16 09:08:43 +02:00
|
|
|
|
2018-06-03 05:59:21 +02:00
|
|
|
#if ENABLED(Z_LATE_ENABLE)
|
|
|
|
// If delayed Z enable, enable it now. This option will severely interfere with
|
|
|
|
// timing between pulses when chaining motion between blocks, and it could lead
|
|
|
|
// to lost steps in both X and Y axis, so avoid using it unless strictly necessary!!
|
2020-01-30 10:24:23 +01:00
|
|
|
if (current_block->steps.z) ENABLE_AXIS_Z();
|
2018-06-03 05:59:21 +02:00
|
|
|
#endif
|
2018-03-06 06:06:57 +01:00
|
|
|
|
2018-06-03 05:59:21 +02:00
|
|
|
// Mark the time_nominal as not calculated yet
|
|
|
|
ticks_nominal = -1;
|
2015-12-10 14:05:38 +01:00
|
|
|
|
2018-05-26 09:02:39 +02:00
|
|
|
#if DISABLED(S_CURVE_ACCELERATION)
|
2018-05-09 07:17:53 +02:00
|
|
|
// Set as deceleration point the initial rate of the block
|
|
|
|
acc_step_rate = current_block->initial_rate;
|
|
|
|
#endif
|
2016-05-08 21:16:26 +02:00
|
|
|
|
2018-05-26 09:02:39 +02:00
|
|
|
#if ENABLED(S_CURVE_ACCELERATION)
|
2018-05-09 07:17:53 +02:00
|
|
|
// Initialize the Bézier speed curve
|
|
|
|
_calc_bezier_curve_coeffs(current_block->initial_rate, current_block->cruise_rate, current_block->acceleration_time_inverse);
|
2018-06-03 05:59:21 +02:00
|
|
|
// We haven't started the 2nd half of the trapezoid
|
2018-05-09 07:17:53 +02:00
|
|
|
bezier_2nd_half = false;
|
|
|
|
#endif
|
2018-03-06 06:06:57 +01:00
|
|
|
|
2018-06-03 05:59:21 +02:00
|
|
|
// Calculate the initial timer interval
|
2020-02-14 12:14:37 +01:00
|
|
|
interval = calc_timer_interval(current_block->initial_rate, &steps_per_isr);
|
2018-05-09 07:17:53 +02:00
|
|
|
}
|
2013-08-01 15:06:39 +02:00
|
|
|
}
|
2018-05-09 07:17:53 +02:00
|
|
|
|
|
|
|
// Return the interval to wait
|
|
|
|
return interval;
|
2011-11-13 20:42:08 +01:00
|
|
|
}
|
|
|
|
|
2017-10-09 11:25:18 +02:00
|
|
|
#if ENABLED(LIN_ADVANCE)
|
2016-05-04 21:10:42 +02:00
|
|
|
|
2018-06-03 05:59:21 +02:00
|
|
|
// Timer interrupt for E. LA_steps is set in the main routine
|
2018-05-09 07:17:53 +02:00
|
|
|
uint32_t Stepper::advance_isr() {
|
|
|
|
uint32_t interval;
|
2017-01-22 01:10:02 +01:00
|
|
|
|
2018-06-03 05:59:21 +02:00
|
|
|
if (LA_use_advance_lead) {
|
|
|
|
if (step_events_completed > decelerate_after && LA_current_adv_steps > LA_final_adv_steps) {
|
|
|
|
LA_steps--;
|
|
|
|
LA_current_adv_steps--;
|
|
|
|
interval = LA_isr_rate;
|
2018-02-23 07:53:29 +01:00
|
|
|
}
|
2018-06-03 05:59:21 +02:00
|
|
|
else if (step_events_completed < decelerate_after && LA_current_adv_steps < LA_max_adv_steps) {
|
|
|
|
//step_events_completed <= (uint32_t)accelerate_until) {
|
|
|
|
LA_steps++;
|
|
|
|
LA_current_adv_steps++;
|
|
|
|
interval = LA_isr_rate;
|
2018-02-23 07:53:29 +01:00
|
|
|
}
|
2018-05-28 00:56:21 +02:00
|
|
|
else
|
2018-06-03 05:59:21 +02:00
|
|
|
interval = LA_isr_rate = LA_ADV_NEVER;
|
2018-02-23 07:53:29 +01:00
|
|
|
}
|
|
|
|
else
|
2018-06-03 05:59:21 +02:00
|
|
|
interval = LA_ADV_NEVER;
|
2018-02-23 07:53:29 +01:00
|
|
|
|
2020-02-10 23:58:21 +01:00
|
|
|
DIR_WAIT_BEFORE();
|
2019-09-20 01:44:07 +02:00
|
|
|
|
2019-09-04 03:01:51 +02:00
|
|
|
#if ENABLED(MIXING_EXTRUDER)
|
|
|
|
// We don't know which steppers will be stepped because LA loop follows,
|
|
|
|
// with potentially multiple steps. Set all.
|
|
|
|
if (LA_steps >= 0)
|
|
|
|
MIXER_STEPPER_LOOP(j) NORM_E_DIR(j);
|
|
|
|
else
|
|
|
|
MIXER_STEPPER_LOOP(j) REV_E_DIR(j);
|
|
|
|
#else
|
|
|
|
if (LA_steps >= 0)
|
|
|
|
NORM_E_DIR(stepper_extruder);
|
|
|
|
else
|
|
|
|
REV_E_DIR(stepper_extruder);
|
|
|
|
#endif
|
|
|
|
|
2020-02-10 23:58:21 +01:00
|
|
|
DIR_WAIT_AFTER();
|
2016-10-01 11:51:45 +02:00
|
|
|
|
2019-12-19 09:38:48 +01:00
|
|
|
//const hal_timer_t added_step_ticks = hal_timer_t(ADDED_STEP_TICKS);
|
2018-06-12 06:04:26 +02:00
|
|
|
|
2018-02-23 07:53:29 +01:00
|
|
|
// Step E stepper if we have steps
|
2020-01-02 05:06:50 +01:00
|
|
|
#if ISR_MULTI_STEPS
|
|
|
|
bool firstStep = true;
|
2020-02-10 23:58:21 +01:00
|
|
|
USING_TIMED_PULSE();
|
2020-01-02 05:06:50 +01:00
|
|
|
#endif
|
2019-12-19 09:38:48 +01:00
|
|
|
|
2018-06-03 05:59:21 +02:00
|
|
|
while (LA_steps) {
|
2020-01-02 05:06:50 +01:00
|
|
|
#if ISR_MULTI_STEPS
|
2019-12-19 09:38:48 +01:00
|
|
|
if (firstStep)
|
|
|
|
firstStep = false;
|
|
|
|
else
|
|
|
|
AWAIT_LOW_PULSE();
|
|
|
|
#endif
|
2016-08-30 21:22:42 +02:00
|
|
|
|
2018-06-12 06:04:26 +02:00
|
|
|
// Set the STEP pulse ON
|
2018-06-03 05:59:21 +02:00
|
|
|
#if ENABLED(MIXING_EXTRUDER)
|
2018-10-16 10:38:57 +02:00
|
|
|
E_STEP_WRITE(mixer.get_next_stepper(), !INVERT_E_STEP_PIN);
|
2018-06-03 05:59:21 +02:00
|
|
|
#else
|
2018-10-16 10:38:57 +02:00
|
|
|
E_STEP_WRITE(stepper_extruder, !INVERT_E_STEP_PIN);
|
2018-06-03 05:59:21 +02:00
|
|
|
#endif
|
2016-08-30 21:22:42 +02:00
|
|
|
|
2018-06-12 06:04:26 +02:00
|
|
|
// Enforce a minimum duration for STEP pulse ON
|
2020-01-02 05:06:50 +01:00
|
|
|
#if ISR_PULSE_CONTROL
|
2019-12-19 09:38:48 +01:00
|
|
|
START_HIGH_PULSE();
|
2016-08-30 21:22:58 +02:00
|
|
|
#endif
|
|
|
|
|
2018-06-03 05:59:21 +02:00
|
|
|
LA_steps < 0 ? ++LA_steps : --LA_steps;
|
2018-05-29 02:34:08 +02:00
|
|
|
|
2020-01-02 05:06:50 +01:00
|
|
|
#if ISR_PULSE_CONTROL
|
2019-12-19 09:38:48 +01:00
|
|
|
AWAIT_HIGH_PULSE();
|
|
|
|
#endif
|
|
|
|
|
2018-06-12 06:04:26 +02:00
|
|
|
// Set the STEP pulse OFF
|
2018-06-03 05:59:21 +02:00
|
|
|
#if ENABLED(MIXING_EXTRUDER)
|
2018-10-16 10:38:57 +02:00
|
|
|
E_STEP_WRITE(mixer.get_stepper(), INVERT_E_STEP_PIN);
|
2018-06-03 05:59:21 +02:00
|
|
|
#else
|
2018-10-16 10:38:57 +02:00
|
|
|
E_STEP_WRITE(stepper_extruder, INVERT_E_STEP_PIN);
|
2018-06-03 05:59:21 +02:00
|
|
|
#endif
|
2016-04-27 16:15:20 +02:00
|
|
|
|
2018-06-12 06:04:26 +02:00
|
|
|
// For minimum pulse time wait before looping
|
|
|
|
// Just wait for the requested pulse duration
|
2020-01-02 05:06:50 +01:00
|
|
|
#if ISR_PULSE_CONTROL
|
2019-12-19 09:38:48 +01:00
|
|
|
if (LA_steps) START_LOW_PULSE();
|
|
|
|
#endif
|
2018-06-03 05:59:21 +02:00
|
|
|
} // LA_steps
|
2016-05-04 18:53:17 +02:00
|
|
|
|
2018-05-09 07:17:53 +02:00
|
|
|
return interval;
|
2016-12-12 20:30:02 +01:00
|
|
|
}
|
2020-02-14 12:14:37 +01:00
|
|
|
|
2017-10-09 11:25:18 +02:00
|
|
|
#endif // LIN_ADVANCE
|
2016-05-04 18:53:17 +02:00
|
|
|
|
2020-02-16 04:42:28 +01:00
|
|
|
#if ENABLED(INTEGRATED_BABYSTEPPING)
|
|
|
|
|
|
|
|
// Timer interrupt for baby-stepping
|
|
|
|
uint32_t Stepper::babystepping_isr() {
|
|
|
|
babystep.task();
|
|
|
|
return babystep.has_steps() ? BABYSTEP_TICKS : BABYSTEP_NEVER;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2018-06-28 01:11:16 +02:00
|
|
|
// Check if the given block is busy or not - Must not be called from ISR contexts
|
|
|
|
// The current_block could change in the middle of the read by an Stepper ISR, so
|
|
|
|
// we must explicitly prevent that!
|
|
|
|
bool Stepper::is_block_busy(const block_t* const block) {
|
|
|
|
#ifdef __AVR__
|
|
|
|
// A SW memory barrier, to ensure GCC does not overoptimize loops
|
|
|
|
#define sw_barrier() asm volatile("": : :"memory");
|
|
|
|
|
|
|
|
// Keep reading until 2 consecutive reads return the same value,
|
|
|
|
// meaning there was no update in-between caused by an interrupt.
|
|
|
|
// This works because stepper ISRs happen at a slower rate than
|
|
|
|
// successive reads of a variable, so 2 consecutive reads with
|
|
|
|
// the same value means no interrupt updated it.
|
|
|
|
block_t* vold, *vnew = current_block;
|
|
|
|
sw_barrier();
|
|
|
|
do {
|
|
|
|
vold = vnew;
|
|
|
|
vnew = current_block;
|
|
|
|
sw_barrier();
|
|
|
|
} while (vold != vnew);
|
|
|
|
#else
|
|
|
|
block_t *vnew = current_block;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Return if the block is busy or not
|
|
|
|
return block == vnew;
|
|
|
|
}
|
|
|
|
|
2016-04-27 16:15:20 +02:00
|
|
|
void Stepper::init() {
|
2016-05-12 00:24:24 +02:00
|
|
|
|
2017-06-18 01:36:10 +02:00
|
|
|
#if MB(ALLIGATOR)
|
|
|
|
const float motor_current[] = MOTOR_CURRENT;
|
|
|
|
unsigned int digipot_motor = 0;
|
|
|
|
for (uint8_t i = 0; i < 3 + EXTRUDERS; i++) {
|
|
|
|
digipot_motor = 255 * (motor_current[i] / 2.5);
|
|
|
|
dac084s085::setValue(i, digipot_motor);
|
|
|
|
}
|
2020-02-14 12:14:37 +01:00
|
|
|
#endif
|
2017-06-18 01:36:10 +02:00
|
|
|
|
2016-09-25 13:32:58 +02:00
|
|
|
// Init Microstepping Pins
|
|
|
|
#if HAS_MICROSTEPS
|
|
|
|
microstep_init();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Init Dir Pins
|
2015-04-04 00:31:35 +02:00
|
|
|
#if HAS_X_DIR
|
2020-01-20 03:01:22 +01:00
|
|
|
X_DIR_INIT();
|
2011-11-13 20:42:08 +01:00
|
|
|
#endif
|
2015-04-04 00:31:35 +02:00
|
|
|
#if HAS_X2_DIR
|
2020-01-20 03:01:22 +01:00
|
|
|
X2_DIR_INIT();
|
2013-07-17 14:44:45 +02:00
|
|
|
#endif
|
2015-04-04 00:31:35 +02:00
|
|
|
#if HAS_Y_DIR
|
2020-01-20 03:01:22 +01:00
|
|
|
Y_DIR_INIT();
|
2015-07-31 07:28:11 +02:00
|
|
|
#if ENABLED(Y_DUAL_STEPPER_DRIVERS) && HAS_Y2_DIR
|
2020-01-20 03:01:22 +01:00
|
|
|
Y2_DIR_INIT();
|
2015-03-14 12:28:22 +01:00
|
|
|
#endif
|
2011-11-13 20:42:08 +01:00
|
|
|
#endif
|
2015-04-04 00:31:35 +02:00
|
|
|
#if HAS_Z_DIR
|
2020-01-20 03:01:22 +01:00
|
|
|
Z_DIR_INIT();
|
2020-01-20 06:35:07 +01:00
|
|
|
#if NUM_Z_STEPPER_DRIVERS >= 2 && HAS_Z2_DIR
|
2020-01-20 03:01:22 +01:00
|
|
|
Z2_DIR_INIT();
|
2012-08-04 08:32:26 +02:00
|
|
|
#endif
|
2020-01-20 06:35:07 +01:00
|
|
|
#if NUM_Z_STEPPER_DRIVERS >= 3 && HAS_Z3_DIR
|
2020-01-20 03:01:22 +01:00
|
|
|
Z3_DIR_INIT();
|
2018-06-19 18:55:49 +02:00
|
|
|
#endif
|
2020-01-20 06:35:07 +01:00
|
|
|
#if NUM_Z_STEPPER_DRIVERS >= 4 && HAS_Z4_DIR
|
|
|
|
Z4_DIR_INIT();
|
|
|
|
#endif
|
2011-11-13 20:42:08 +01:00
|
|
|
#endif
|
2015-04-04 00:31:35 +02:00
|
|
|
#if HAS_E0_DIR
|
2020-01-20 03:01:22 +01:00
|
|
|
E0_DIR_INIT();
|
2011-12-06 05:33:33 +01:00
|
|
|
#endif
|
2015-04-04 00:31:35 +02:00
|
|
|
#if HAS_E1_DIR
|
2020-01-20 03:01:22 +01:00
|
|
|
E1_DIR_INIT();
|
2011-12-06 05:33:33 +01:00
|
|
|
#endif
|
2015-04-04 00:31:35 +02:00
|
|
|
#if HAS_E2_DIR
|
2020-01-20 03:01:22 +01:00
|
|
|
E2_DIR_INIT();
|
2011-11-13 20:42:08 +01:00
|
|
|
#endif
|
2015-04-04 00:31:35 +02:00
|
|
|
#if HAS_E3_DIR
|
2020-01-20 03:01:22 +01:00
|
|
|
E3_DIR_INIT();
|
2015-01-23 23:13:06 +01:00
|
|
|
#endif
|
2017-04-09 10:23:05 +02:00
|
|
|
#if HAS_E4_DIR
|
2020-01-20 03:01:22 +01:00
|
|
|
E4_DIR_INIT();
|
2017-04-09 10:23:05 +02:00
|
|
|
#endif
|
2018-09-13 08:35:55 +02:00
|
|
|
#if HAS_E5_DIR
|
2020-01-20 03:01:22 +01:00
|
|
|
E5_DIR_INIT();
|
2018-09-13 08:35:55 +02:00
|
|
|
#endif
|
2020-01-25 09:13:39 +01:00
|
|
|
#if HAS_E6_DIR
|
|
|
|
E6_DIR_INIT();
|
|
|
|
#endif
|
|
|
|
#if HAS_E7_DIR
|
|
|
|
E7_DIR_INIT();
|
|
|
|
#endif
|
2011-11-13 20:42:08 +01:00
|
|
|
|
2016-09-25 13:32:58 +02:00
|
|
|
// Init Enable Pins - steppers default to disabled.
|
2015-04-04 00:31:35 +02:00
|
|
|
#if HAS_X_ENABLE
|
2020-01-20 03:01:22 +01:00
|
|
|
X_ENABLE_INIT();
|
2015-03-14 12:28:22 +01:00
|
|
|
if (!X_ENABLE_ON) X_ENABLE_WRITE(HIGH);
|
2019-03-17 05:43:06 +01:00
|
|
|
#if EITHER(DUAL_X_CARRIAGE, X_DUAL_STEPPER_DRIVERS) && HAS_X2_ENABLE
|
2020-01-20 03:01:22 +01:00
|
|
|
X2_ENABLE_INIT();
|
2016-05-17 23:56:49 +02:00
|
|
|
if (!X_ENABLE_ON) X2_ENABLE_WRITE(HIGH);
|
|
|
|
#endif
|
2011-11-13 20:42:08 +01:00
|
|
|
#endif
|
2015-04-04 00:31:35 +02:00
|
|
|
#if HAS_Y_ENABLE
|
2020-01-20 03:01:22 +01:00
|
|
|
Y_ENABLE_INIT();
|
2015-03-14 12:28:22 +01:00
|
|
|
if (!Y_ENABLE_ON) Y_ENABLE_WRITE(HIGH);
|
2016-05-17 23:56:49 +02:00
|
|
|
#if ENABLED(Y_DUAL_STEPPER_DRIVERS) && HAS_Y2_ENABLE
|
2020-01-20 03:01:22 +01:00
|
|
|
Y2_ENABLE_INIT();
|
2016-05-17 23:56:49 +02:00
|
|
|
if (!Y_ENABLE_ON) Y2_ENABLE_WRITE(HIGH);
|
|
|
|
#endif
|
2011-11-13 20:42:08 +01:00
|
|
|
#endif
|
2015-04-04 00:31:35 +02:00
|
|
|
#if HAS_Z_ENABLE
|
2020-01-20 03:01:22 +01:00
|
|
|
Z_ENABLE_INIT();
|
2015-03-14 12:28:22 +01:00
|
|
|
if (!Z_ENABLE_ON) Z_ENABLE_WRITE(HIGH);
|
2020-01-20 06:35:07 +01:00
|
|
|
#if NUM_Z_STEPPER_DRIVERS >= 2 && HAS_Z2_ENABLE
|
2020-01-20 03:01:22 +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
|
2020-01-20 06:35:07 +01:00
|
|
|
#if NUM_Z_STEPPER_DRIVERS >= 3 && HAS_Z3_ENABLE
|
2020-01-20 03:01:22 +01:00
|
|
|
Z3_ENABLE_INIT();
|
2018-06-19 18:55:49 +02:00
|
|
|
if (!Z_ENABLE_ON) Z3_ENABLE_WRITE(HIGH);
|
|
|
|
#endif
|
2020-01-20 06:35:07 +01:00
|
|
|
#if NUM_Z_STEPPER_DRIVERS >= 4 && HAS_Z4_ENABLE
|
|
|
|
Z4_ENABLE_INIT();
|
|
|
|
if (!Z_ENABLE_ON) Z4_ENABLE_WRITE(HIGH);
|
|
|
|
#endif
|
2011-11-13 20:42:08 +01:00
|
|
|
#endif
|
2015-04-04 00:31:35 +02:00
|
|
|
#if HAS_E0_ENABLE
|
2020-01-20 03:01:22 +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-04-04 00:31:35 +02:00
|
|
|
#if HAS_E1_ENABLE
|
2020-01-20 03:01:22 +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-04-04 00:31:35 +02:00
|
|
|
#if HAS_E2_ENABLE
|
2020-01-20 03:01:22 +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-04-04 00:31:35 +02:00
|
|
|
#if HAS_E3_ENABLE
|
2020-01-20 03:01:22 +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
|
2017-04-09 10:23:05 +02:00
|
|
|
#if HAS_E4_ENABLE
|
2020-01-20 03:01:22 +01:00
|
|
|
E4_ENABLE_INIT();
|
2017-04-09 10:23:05 +02:00
|
|
|
if (!E_ENABLE_ON) E4_ENABLE_WRITE(HIGH);
|
|
|
|
#endif
|
2018-09-13 08:35:55 +02:00
|
|
|
#if HAS_E5_ENABLE
|
2020-01-20 03:01:22 +01:00
|
|
|
E5_ENABLE_INIT();
|
2018-09-13 08:35:55 +02:00
|
|
|
if (!E_ENABLE_ON) E5_ENABLE_WRITE(HIGH);
|
|
|
|
#endif
|
2020-01-25 09:13:39 +01:00
|
|
|
#if HAS_E6_ENABLE
|
|
|
|
E6_ENABLE_INIT();
|
|
|
|
if (!E_ENABLE_ON) E6_ENABLE_WRITE(HIGH);
|
|
|
|
#endif
|
|
|
|
#if HAS_E7_ENABLE
|
|
|
|
E7_ENABLE_INIT();
|
|
|
|
if (!E_ENABLE_ON) E7_ENABLE_WRITE(HIGH);
|
|
|
|
#endif
|
2011-11-13 20:42:08 +01:00
|
|
|
|
2020-01-20 03:50:33 +01:00
|
|
|
#define _STEP_INIT(AXIS) AXIS ##_STEP_INIT()
|
2015-05-07 18:55:47 +02:00
|
|
|
#define _WRITE_STEP(AXIS, HIGHLOW) AXIS ##_STEP_WRITE(HIGHLOW)
|
2020-01-30 10:24:23 +01:00
|
|
|
#define _DISABLE_AXIS(AXIS) DISABLE_AXIS_## AXIS()
|
2015-04-24 08:03:17 +02:00
|
|
|
|
2017-04-11 18:10:26 +02:00
|
|
|
#define AXIS_INIT(AXIS, PIN) \
|
2015-04-24 08:03:17 +02:00
|
|
|
_STEP_INIT(AXIS); \
|
|
|
|
_WRITE_STEP(AXIS, _INVERT_STEP_PIN(PIN)); \
|
2020-01-30 10:24:23 +01:00
|
|
|
_DISABLE_AXIS(AXIS)
|
2011-11-13 20:42:08 +01:00
|
|
|
|
2017-04-11 18:10:26 +02:00
|
|
|
#define E_AXIS_INIT(NUM) AXIS_INIT(E## NUM, E)
|
2015-03-14 12:28:22 +01:00
|
|
|
|
2016-09-25 13:32:58 +02:00
|
|
|
// Init Step Pins
|
2015-04-04 00:31:35 +02:00
|
|
|
#if HAS_X_STEP
|
2019-03-17 05:43:06 +01:00
|
|
|
#if EITHER(X_DUAL_STEPPER_DRIVERS, DUAL_X_CARRIAGE)
|
2020-01-20 03:01:22 +01:00
|
|
|
X2_STEP_INIT();
|
2016-07-11 19:19:07 +02:00
|
|
|
X2_STEP_WRITE(INVERT_X_STEP_PIN);
|
2016-05-17 23:56:49 +02:00
|
|
|
#endif
|
2017-04-11 18:10:26 +02:00
|
|
|
AXIS_INIT(X, X);
|
2013-08-01 15:06:39 +02:00
|
|
|
#endif
|
2016-05-17 23:56:49 +02:00
|
|
|
|
2015-04-04 00:31:35 +02:00
|
|
|
#if HAS_Y_STEP
|
2016-07-11 19:19:07 +02:00
|
|
|
#if ENABLED(Y_DUAL_STEPPER_DRIVERS)
|
2020-01-20 03:01:22 +01:00
|
|
|
Y2_STEP_INIT();
|
2015-02-23 16:12:35 +01:00
|
|
|
Y2_STEP_WRITE(INVERT_Y_STEP_PIN);
|
2013-09-17 20:19:20 +02:00
|
|
|
#endif
|
2017-04-11 18:10:26 +02:00
|
|
|
AXIS_INIT(Y, Y);
|
2013-08-01 15:06:39 +02:00
|
|
|
#endif
|
2016-05-17 23:56:49 +02:00
|
|
|
|
2015-04-04 00:31:35 +02:00
|
|
|
#if HAS_Z_STEP
|
2020-01-20 06:35:07 +01:00
|
|
|
#if NUM_Z_STEPPER_DRIVERS >= 2
|
2020-01-20 03:01:22 +01:00
|
|
|
Z2_STEP_INIT();
|
2015-02-23 16:12:35 +01:00
|
|
|
Z2_STEP_WRITE(INVERT_Z_STEP_PIN);
|
2012-08-04 08:32:26 +02:00
|
|
|
#endif
|
2020-01-20 06:35:07 +01:00
|
|
|
#if NUM_Z_STEPPER_DRIVERS >= 3
|
2020-01-20 03:01:22 +01:00
|
|
|
Z3_STEP_INIT();
|
2018-06-19 18:55:49 +02:00
|
|
|
Z3_STEP_WRITE(INVERT_Z_STEP_PIN);
|
|
|
|
#endif
|
2020-01-20 06:35:07 +01:00
|
|
|
#if NUM_Z_STEPPER_DRIVERS >= 4
|
|
|
|
Z4_STEP_INIT();
|
|
|
|
Z4_STEP_WRITE(INVERT_Z_STEP_PIN);
|
|
|
|
#endif
|
2017-04-11 18:10:26 +02:00
|
|
|
AXIS_INIT(Z, Z);
|
2013-08-01 15:06:39 +02:00
|
|
|
#endif
|
2016-05-17 23:56:49 +02:00
|
|
|
|
2018-05-29 02:34:08 +02:00
|
|
|
#if E_STEPPERS > 0 && HAS_E0_STEP
|
2015-03-14 12:28:22 +01:00
|
|
|
E_AXIS_INIT(0);
|
2013-08-01 15:06:39 +02:00
|
|
|
#endif
|
2018-05-29 02:34:08 +02:00
|
|
|
#if E_STEPPERS > 1 && HAS_E1_STEP
|
2015-03-14 12:28:22 +01:00
|
|
|
E_AXIS_INIT(1);
|
2013-08-01 15:06:39 +02:00
|
|
|
#endif
|
2018-05-29 02:34:08 +02:00
|
|
|
#if E_STEPPERS > 2 && HAS_E2_STEP
|
2015-03-14 12:28:22 +01:00
|
|
|
E_AXIS_INIT(2);
|
2013-08-01 15:06:39 +02:00
|
|
|
#endif
|
2018-05-29 02:34:08 +02:00
|
|
|
#if E_STEPPERS > 3 && HAS_E3_STEP
|
2015-03-14 12:28:22 +01:00
|
|
|
E_AXIS_INIT(3);
|
2015-01-23 23:13:06 +01:00
|
|
|
#endif
|
2018-05-29 02:34:08 +02:00
|
|
|
#if E_STEPPERS > 4 && HAS_E4_STEP
|
2017-04-15 00:14:14 +02:00
|
|
|
E_AXIS_INIT(4);
|
|
|
|
#endif
|
2018-09-13 08:35:55 +02:00
|
|
|
#if E_STEPPERS > 5 && HAS_E5_STEP
|
|
|
|
E_AXIS_INIT(5);
|
|
|
|
#endif
|
2020-01-25 09:13:39 +01:00
|
|
|
#if E_STEPPERS > 6 && HAS_E6_STEP
|
|
|
|
E_AXIS_INIT(6);
|
|
|
|
#endif
|
|
|
|
#if E_STEPPERS > 7 && HAS_E7_STEP
|
|
|
|
E_AXIS_INIT(7);
|
|
|
|
#endif
|
2011-11-13 20:42:08 +01:00
|
|
|
|
2019-02-10 12:40:31 +01:00
|
|
|
#if DISABLED(I2S_STEPPER_STREAM)
|
|
|
|
HAL_timer_start(STEP_TIMER_NUM, 122); // Init Stepper ISR to 122 Hz for quick starting
|
2020-02-14 12:14:37 +01:00
|
|
|
wake_up();
|
2019-02-10 12:40:31 +01:00
|
|
|
sei();
|
|
|
|
#endif
|
2019-02-03 08:29:00 +01:00
|
|
|
|
|
|
|
// Init direction bits for first moves
|
|
|
|
last_direction_bits = 0
|
|
|
|
| (INVERT_X_DIR ? _BV(X_AXIS) : 0)
|
|
|
|
| (INVERT_Y_DIR ? _BV(Y_AXIS) : 0)
|
|
|
|
| (INVERT_Z_DIR ? _BV(Z_AXIS) : 0);
|
|
|
|
|
|
|
|
set_directions();
|
2019-03-04 03:58:02 +01:00
|
|
|
|
|
|
|
#if HAS_DIGIPOTSS || HAS_MOTOR_CURRENT_PWM
|
|
|
|
#if HAS_MOTOR_CURRENT_PWM
|
|
|
|
initialized = true;
|
|
|
|
#endif
|
|
|
|
digipot_init();
|
2019-03-03 00:29:02 +01:00
|
|
|
#endif
|
2011-11-13 20:42:08 +01:00
|
|
|
}
|
|
|
|
|
2016-04-11 10:03:50 +02:00
|
|
|
/**
|
|
|
|
* Set the stepper positions directly in steps
|
|
|
|
*
|
|
|
|
* The input is based on the typical per-axis XYZ steps.
|
|
|
|
* For CORE machines XYZ needs to be translated to ABC.
|
|
|
|
*
|
2016-04-27 16:15:20 +02:00
|
|
|
* This allows get_axis_position_mm to correctly
|
2016-04-11 10:03:50 +02:00
|
|
|
* derive the current XYZ position later on.
|
|
|
|
*/
|
2018-05-04 00:45:13 +02:00
|
|
|
void Stepper::_set_position(const int32_t &a, const int32_t &b, const int32_t &c, const int32_t &e) {
|
2016-11-06 05:47:38 +01:00
|
|
|
#if CORE_IS_XY
|
2016-04-11 10:03:50 +02:00
|
|
|
// corexy positioning
|
|
|
|
// these equations follow the form of the dA and dB equations on http://www.corexy.com/theory.html
|
2019-09-29 11:25:39 +02:00
|
|
|
count_position.set(a + b, CORESIGN(a - b), c);
|
2016-11-06 05:47:38 +01:00
|
|
|
#elif CORE_IS_XZ
|
2016-04-11 10:03:50 +02:00
|
|
|
// corexz planning
|
2019-09-29 11:25:39 +02:00
|
|
|
count_position.set(a + c, b, CORESIGN(a - c));
|
2016-11-06 05:47:38 +01:00
|
|
|
#elif CORE_IS_YZ
|
2016-05-20 22:27:49 +02:00
|
|
|
// coreyz planning
|
2019-09-29 11:25:39 +02:00
|
|
|
count_position.set(a, b + c, CORESIGN(b - c));
|
2016-04-11 10:03:50 +02:00
|
|
|
#else
|
|
|
|
// default non-h-bot planning
|
2019-09-29 11:25:39 +02:00
|
|
|
count_position.set(a, b, c);
|
2016-04-11 10:03:50 +02:00
|
|
|
#endif
|
2019-09-29 11:25:39 +02:00
|
|
|
count_position.e = e;
|
2011-11-25 13:43:06 +01:00
|
|
|
}
|
|
|
|
|
2016-04-11 10:03:10 +02:00
|
|
|
/**
|
|
|
|
* Get a stepper's position in steps.
|
|
|
|
*/
|
2018-05-04 03:13:01 +02:00
|
|
|
int32_t Stepper::position(const AxisEnum axis) {
|
2018-05-09 07:17:53 +02:00
|
|
|
#ifdef __AVR__
|
|
|
|
// Protect the access to the position. Only required for AVR, as
|
|
|
|
// any 32bit CPU offers atomic access to 32bit variables
|
2020-02-14 12:14:37 +01:00
|
|
|
const bool was_enabled = suspend();
|
2018-05-09 07:17:53 +02:00
|
|
|
#endif
|
2011-11-26 11:50:23 +01:00
|
|
|
|
2018-05-21 05:20:11 +02:00
|
|
|
const int32_t v = count_position[axis];
|
2018-05-09 07:17:53 +02:00
|
|
|
|
|
|
|
#ifdef __AVR__
|
|
|
|
// Reenable Stepper ISR
|
2020-02-14 12:14:37 +01:00
|
|
|
if (was_enabled) wake_up();
|
2018-05-09 07:17:53 +02:00
|
|
|
#endif
|
|
|
|
return v;
|
2011-11-26 11:50:23 +01:00
|
|
|
}
|
2011-12-11 22:10:06 +01:00
|
|
|
|
2020-02-14 12:14:37 +01:00
|
|
|
// Set the current position in steps
|
|
|
|
void Stepper::set_position(const int32_t &a, const int32_t &b, const int32_t &c, const int32_t &e) {
|
|
|
|
planner.synchronize();
|
|
|
|
const bool was_enabled = suspend();
|
|
|
|
_set_position(a, b, c, e);
|
|
|
|
if (was_enabled) wake_up();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Stepper::set_axis_position(const AxisEnum a, const int32_t &v) {
|
|
|
|
planner.synchronize();
|
|
|
|
|
|
|
|
#ifdef __AVR__
|
|
|
|
// Protect the access to the position. Only required for AVR, as
|
|
|
|
// any 32bit CPU offers atomic access to 32bit variables
|
|
|
|
const bool was_enabled = suspend();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
count_position[a] = v;
|
|
|
|
|
|
|
|
#ifdef __AVR__
|
|
|
|
// Reenable Stepper ISR
|
|
|
|
if (was_enabled) wake_up();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2018-05-16 09:08:43 +02:00
|
|
|
// Signal endstops were triggered - This function can be called from
|
|
|
|
// an ISR context (Temperature, Stepper or limits ISR), so we must
|
|
|
|
// be very careful here. If the interrupt being preempted was the
|
|
|
|
// Stepper ISR (this CAN happen with the endstop limits ISR) then
|
|
|
|
// when the stepper ISR resumes, we must be very sure that the movement
|
2019-10-24 22:35:40 +02:00
|
|
|
// is properly canceled
|
2017-12-09 09:10:54 +01:00
|
|
|
void Stepper::endstop_triggered(const AxisEnum axis) {
|
2018-05-16 09:08:43 +02:00
|
|
|
|
2020-02-14 12:14:37 +01:00
|
|
|
const bool was_enabled = suspend();
|
2019-09-14 10:05:10 +02:00
|
|
|
endstops_trigsteps[axis] = (
|
|
|
|
#if IS_CORE
|
|
|
|
(axis == CORE_AXIS_2
|
|
|
|
? CORESIGN(count_position[CORE_AXIS_1] - count_position[CORE_AXIS_2])
|
|
|
|
: count_position[CORE_AXIS_1] + count_position[CORE_AXIS_2]
|
2019-12-22 23:11:17 +01:00
|
|
|
) * double(0.5)
|
2019-09-14 10:05:10 +02:00
|
|
|
#else // !IS_CORE
|
|
|
|
count_position[axis]
|
|
|
|
#endif
|
|
|
|
);
|
2016-04-27 16:15:20 +02:00
|
|
|
|
2018-05-09 07:17:53 +02:00
|
|
|
// Discard the rest of the move if there is a current block
|
2018-05-16 09:08:43 +02:00
|
|
|
quick_stop();
|
2018-05-09 07:17:53 +02:00
|
|
|
|
2020-02-14 12:14:37 +01:00
|
|
|
if (was_enabled) wake_up();
|
2018-05-09 07:17:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int32_t Stepper::triggered_position(const AxisEnum axis) {
|
|
|
|
#ifdef __AVR__
|
|
|
|
// Protect the access to the position. Only required for AVR, as
|
|
|
|
// any 32bit CPU offers atomic access to 32bit variables
|
2020-02-14 12:14:37 +01:00
|
|
|
const bool was_enabled = suspend();
|
2018-05-09 07:17:53 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
const int32_t v = endstops_trigsteps[axis];
|
|
|
|
|
|
|
|
#ifdef __AVR__
|
|
|
|
// Reenable Stepper ISR
|
2020-02-14 12:14:37 +01:00
|
|
|
if (was_enabled) wake_up();
|
2018-05-09 07:17:53 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
return v;
|
2016-04-27 16:15:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void Stepper::report_positions() {
|
2018-05-09 07:17:53 +02:00
|
|
|
|
2019-09-14 10:05:10 +02:00
|
|
|
#ifdef __AVR__
|
|
|
|
// Protect the access to the position.
|
2020-02-14 12:14:37 +01:00
|
|
|
const bool was_enabled = suspend();
|
2019-09-14 10:05:10 +02:00
|
|
|
#endif
|
2018-05-09 07:17:53 +02:00
|
|
|
|
2019-09-29 11:25:39 +02:00
|
|
|
const xyz_long_t pos = count_position;
|
2018-05-09 07:17:53 +02:00
|
|
|
|
2019-09-14 10:05:10 +02:00
|
|
|
#ifdef __AVR__
|
2020-02-14 12:14:37 +01:00
|
|
|
if (was_enabled) wake_up();
|
2019-09-14 10:05:10 +02:00
|
|
|
#endif
|
2016-04-27 16:15:20 +02:00
|
|
|
|
2018-11-03 09:48:36 +01:00
|
|
|
#if CORE_IS_XY || CORE_IS_XZ || ENABLED(DELTA) || IS_SCARA
|
2019-09-29 11:25:39 +02:00
|
|
|
SERIAL_ECHOPAIR(MSG_COUNT_A, pos.x, " B:", pos.y);
|
2016-04-27 16:15:20 +02:00
|
|
|
#else
|
2019-09-29 11:25:39 +02:00
|
|
|
SERIAL_ECHOPAIR(MSG_COUNT_X, pos.x, " Y:", pos.y);
|
2016-04-27 16:15:20 +02:00
|
|
|
#endif
|
2018-11-03 09:48:36 +01:00
|
|
|
#if CORE_IS_XZ || CORE_IS_YZ || ENABLED(DELTA)
|
2019-09-29 11:25:39 +02:00
|
|
|
SERIAL_ECHOLNPAIR(" C:", pos.z);
|
2016-04-27 16:15:20 +02:00
|
|
|
#else
|
2019-09-29 11:25:39 +02:00
|
|
|
SERIAL_ECHOLNPAIR(" Z:", pos.z);
|
2016-04-27 16:15:20 +02:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2015-07-31 07:28:11 +02:00
|
|
|
#if ENABLED(BABYSTEPPING)
|
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
|
|
|
|
2020-01-30 10:24:23 +01:00
|
|
|
#define _ENABLE_AXIS(AXIS) ENABLE_AXIS_## AXIS()
|
2019-08-17 04:57:19 +02:00
|
|
|
#define _READ_DIR(AXIS) AXIS ##_DIR_READ()
|
2016-11-03 22:42:44 +01:00
|
|
|
#define _INVERT_DIR(AXIS) INVERT_## AXIS ##_DIR
|
|
|
|
#define _APPLY_DIR(AXIS, INVERT) AXIS ##_APPLY_DIR(INVERT, true)
|
|
|
|
|
2020-02-11 15:52:11 +01:00
|
|
|
#if MINIMUM_STEPPER_PULSE
|
|
|
|
#define STEP_PULSE_CYCLES ((MINIMUM_STEPPER_PULSE) * CYCLES_PER_MICROSECOND)
|
|
|
|
#else
|
|
|
|
#define STEP_PULSE_CYCLES 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if ENABLED(DELTA)
|
|
|
|
#define CYCLES_EATEN_BABYSTEP (2 * 15)
|
|
|
|
#else
|
|
|
|
#define CYCLES_EATEN_BABYSTEP 0
|
|
|
|
#endif
|
|
|
|
#define EXTRA_CYCLES_BABYSTEP (STEP_PULSE_CYCLES - (CYCLES_EATEN_BABYSTEP))
|
|
|
|
|
|
|
|
#if EXTRA_CYCLES_BABYSTEP > 20
|
|
|
|
#define _SAVE_START() const hal_timer_t pulse_start = HAL_timer_get_count(PULSE_TIMER_NUM)
|
|
|
|
#define _PULSE_WAIT() while (EXTRA_CYCLES_BABYSTEP > (uint32_t)(HAL_timer_get_count(PULSE_TIMER_NUM) - pulse_start) * (PULSE_TIMER_PRESCALE)) { /* nada */ }
|
|
|
|
#else
|
|
|
|
#define _SAVE_START() NOOP
|
|
|
|
#if EXTRA_CYCLES_BABYSTEP > 0
|
|
|
|
#define _PULSE_WAIT() DELAY_NS(EXTRA_CYCLES_BABYSTEP * NANOSECONDS_PER_CYCLE)
|
|
|
|
#elif ENABLED(DELTA)
|
|
|
|
#define _PULSE_WAIT() DELAY_US(2);
|
|
|
|
#elif STEP_PULSE_CYCLES > 0
|
|
|
|
#define _PULSE_WAIT() NOOP
|
|
|
|
#else
|
|
|
|
#define _PULSE_WAIT() DELAY_US(4);
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2020-02-24 12:29:13 +01:00
|
|
|
#if ENABLED(BABYSTEPPING_EXTRA_DIR_WAIT)
|
|
|
|
#define EXTRA_DIR_WAIT_BEFORE DIR_WAIT_BEFORE
|
|
|
|
#define EXTRA_DIR_WAIT_AFTER DIR_WAIT_AFTER
|
|
|
|
#else
|
|
|
|
#define EXTRA_DIR_WAIT_BEFORE()
|
|
|
|
#define EXTRA_DIR_WAIT_AFTER()
|
|
|
|
#endif
|
|
|
|
|
2020-02-10 23:58:21 +01:00
|
|
|
#if DISABLED(DELTA)
|
2020-02-11 15:52:11 +01:00
|
|
|
|
2020-02-10 23:58:21 +01:00
|
|
|
#define BABYSTEP_AXIS(AXIS, INV, DIR) do{ \
|
2018-03-19 08:51:40 +01:00
|
|
|
const uint8_t old_dir = _READ_DIR(AXIS); \
|
2020-02-01 10:50:26 +01:00
|
|
|
_ENABLE_AXIS(AXIS); \
|
2020-02-10 23:58:21 +01:00
|
|
|
DIR_WAIT_BEFORE(); \
|
|
|
|
_APPLY_DIR(AXIS, _INVERT_DIR(AXIS)^DIR^INV); \
|
|
|
|
DIR_WAIT_AFTER(); \
|
2020-02-11 15:52:11 +01:00
|
|
|
_SAVE_START(); \
|
2020-02-10 23:58:21 +01:00
|
|
|
_APPLY_STEP(AXIS, !_INVERT_STEP_PIN(AXIS), true); \
|
2020-02-11 15:52:11 +01:00
|
|
|
_PULSE_WAIT(); \
|
|
|
|
_APPLY_STEP(AXIS, _INVERT_STEP_PIN(AXIS), true); \
|
2020-02-24 12:29:13 +01:00
|
|
|
EXTRA_DIR_WAIT_BEFORE(); \
|
2018-03-19 08:51:40 +01:00
|
|
|
_APPLY_DIR(AXIS, old_dir); \
|
2020-02-24 12:29:13 +01:00
|
|
|
EXTRA_DIR_WAIT_AFTER(); \
|
2020-02-10 23:58:21 +01:00
|
|
|
}while(0)
|
|
|
|
|
2020-02-11 15:52:11 +01:00
|
|
|
#elif IS_CORE
|
|
|
|
|
2020-02-22 09:52:59 +01:00
|
|
|
#define BABYSTEP_CORE(A, B, INV, DIR, ALT) do{ \
|
2020-02-10 23:58:21 +01:00
|
|
|
const xy_byte_t old_dir = { _READ_DIR(A), _READ_DIR(B) }; \
|
2020-02-11 15:52:11 +01:00
|
|
|
_ENABLE_AXIS(A); _ENABLE_AXIS(B); \
|
|
|
|
DIR_WAIT_BEFORE(); \
|
|
|
|
_APPLY_DIR(A, _INVERT_DIR(A)^DIR^INV); \
|
2020-02-22 09:52:59 +01:00
|
|
|
_APPLY_DIR(B, _INVERT_DIR(B)^DIR^INV^ALT); \
|
2020-02-11 15:52:11 +01:00
|
|
|
DIR_WAIT_AFTER(); \
|
|
|
|
_SAVE_START(); \
|
|
|
|
_APPLY_STEP(A, !_INVERT_STEP_PIN(A), true); \
|
|
|
|
_APPLY_STEP(B, !_INVERT_STEP_PIN(B), true); \
|
|
|
|
_PULSE_WAIT(); \
|
|
|
|
_APPLY_STEP(A, _INVERT_STEP_PIN(A), true); \
|
|
|
|
_APPLY_STEP(B, _INVERT_STEP_PIN(B), true); \
|
2020-02-24 12:29:13 +01:00
|
|
|
EXTRA_DIR_WAIT_BEFORE(); \
|
2020-02-11 15:52:11 +01:00
|
|
|
_APPLY_DIR(A, old_dir.a); _APPLY_DIR(B, old_dir.b); \
|
2020-02-24 12:29:13 +01:00
|
|
|
EXTRA_DIR_WAIT_AFTER(); \
|
2020-02-10 23:58:21 +01:00
|
|
|
}while(0)
|
2020-02-11 15:52:11 +01:00
|
|
|
|
2020-02-10 23:58:21 +01:00
|
|
|
#endif
|
2016-11-03 22:42:44 +01:00
|
|
|
|
2015-03-14 12:28:22 +01:00
|
|
|
// MUST ONLY BE CALLED BY AN ISR,
|
|
|
|
// No other ISR should ever interrupt this!
|
2020-02-17 00:46:41 +01:00
|
|
|
void Stepper::do_babystep(const AxisEnum axis, const bool direction) {
|
2020-02-16 04:42:28 +01:00
|
|
|
|
|
|
|
#if DISABLED(INTEGRATED_BABYSTEPPING)
|
|
|
|
cli();
|
|
|
|
#endif
|
2017-04-11 18:11:17 +02:00
|
|
|
|
2015-10-03 08:08:58 +02: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
|
|
|
|
2017-04-11 18:11:17 +02:00
|
|
|
#if ENABLED(BABYSTEP_XY)
|
|
|
|
|
|
|
|
case X_AXIS:
|
2018-03-19 08:51:40 +01:00
|
|
|
#if CORE_IS_XY
|
2020-02-22 09:52:59 +01:00
|
|
|
BABYSTEP_CORE(X, Y, 0, direction, 0);
|
2018-03-19 08:51:40 +01:00
|
|
|
#elif CORE_IS_XZ
|
2020-02-22 09:52:59 +01:00
|
|
|
BABYSTEP_CORE(X, Z, 0, direction, 0);
|
2018-03-19 08:51:40 +01:00
|
|
|
#else
|
2020-02-22 14:04:06 +01:00
|
|
|
BABYSTEP_AXIS(X, 0, direction);
|
2018-03-19 08:51:40 +01:00
|
|
|
#endif
|
2017-04-11 18:11:17 +02:00
|
|
|
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
|
|
|
|
2017-04-11 18:11:17 +02:00
|
|
|
case Y_AXIS:
|
2018-03-19 08:51:40 +01:00
|
|
|
#if CORE_IS_XY
|
2020-02-22 09:52:59 +01:00
|
|
|
BABYSTEP_CORE(X, Y, 0, direction, (CORESIGN(1)<0));
|
2018-03-19 08:51:40 +01:00
|
|
|
#elif CORE_IS_YZ
|
2020-02-22 09:52:59 +01:00
|
|
|
BABYSTEP_CORE(Y, Z, 0, direction, (CORESIGN(1)<0));
|
2018-03-19 08:51:40 +01:00
|
|
|
#else
|
2020-02-22 14:04:06 +01:00
|
|
|
BABYSTEP_AXIS(Y, 0, direction);
|
2018-03-19 08:51:40 +01:00
|
|
|
#endif
|
2017-04-11 18:11:17 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
#endif
|
2015-10-03 08:08:58 +02:00
|
|
|
|
2015-03-14 12:28:22 +01:00
|
|
|
case Z_AXIS: {
|
2015-01-23 12:24:45 +01:00
|
|
|
|
2018-03-19 08:51:40 +01:00
|
|
|
#if CORE_IS_XZ
|
2020-02-22 09:52:59 +01:00
|
|
|
BABYSTEP_CORE(X, Z, BABYSTEP_INVERT_Z, direction, (CORESIGN(1)<0));
|
2018-03-19 08:51:40 +01:00
|
|
|
#elif CORE_IS_YZ
|
2020-02-22 09:52:59 +01:00
|
|
|
BABYSTEP_CORE(Y, Z, BABYSTEP_INVERT_Z, direction, (CORESIGN(1)<0));
|
2018-03-19 08:51:40 +01:00
|
|
|
#elif DISABLED(DELTA)
|
2020-02-22 14:04:06 +01:00
|
|
|
BABYSTEP_AXIS(Z, BABYSTEP_INVERT_Z, direction);
|
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
|
|
|
|
2017-04-13 13:20:23 +02:00
|
|
|
const bool z_direction = direction ^ BABYSTEP_INVERT_Z;
|
2015-01-23 12:24:45 +01:00
|
|
|
|
2020-01-30 10:24:23 +01:00
|
|
|
ENABLE_AXIS_X();
|
|
|
|
ENABLE_AXIS_Y();
|
|
|
|
ENABLE_AXIS_Z();
|
2017-04-11 18:10:26 +02:00
|
|
|
|
2020-02-10 23:58:21 +01:00
|
|
|
DIR_WAIT_BEFORE();
|
2019-09-20 01:44:07 +02:00
|
|
|
|
2020-02-10 23:58:21 +01:00
|
|
|
const xyz_byte_t old_dir = { X_DIR_READ(), Y_DIR_READ(), Z_DIR_READ() };
|
2017-04-11 18:11:17 +02:00
|
|
|
|
2015-10-03 08:08:58 +02:00
|
|
|
X_DIR_WRITE(INVERT_X_DIR ^ z_direction);
|
|
|
|
Y_DIR_WRITE(INVERT_Y_DIR ^ z_direction);
|
|
|
|
Z_DIR_WRITE(INVERT_Z_DIR ^ z_direction);
|
2017-04-11 18:11:17 +02:00
|
|
|
|
2020-02-10 23:58:21 +01:00
|
|
|
DIR_WAIT_AFTER();
|
2018-05-20 00:26:11 +02:00
|
|
|
|
2020-02-11 15:52:11 +01:00
|
|
|
_SAVE_START();
|
2017-04-11 18:11:17 +02:00
|
|
|
|
2015-03-14 12:28:22 +01:00
|
|
|
X_STEP_WRITE(!INVERT_X_STEP_PIN);
|
|
|
|
Y_STEP_WRITE(!INVERT_Y_STEP_PIN);
|
|
|
|
Z_STEP_WRITE(!INVERT_Z_STEP_PIN);
|
2017-04-11 18:11:17 +02:00
|
|
|
|
2020-02-11 15:52:11 +01:00
|
|
|
_PULSE_WAIT();
|
2017-04-11 18:11:17 +02:00
|
|
|
|
2015-10-03 08:08:58 +02:00
|
|
|
X_STEP_WRITE(INVERT_X_STEP_PIN);
|
|
|
|
Y_STEP_WRITE(INVERT_Y_STEP_PIN);
|
2015-03-14 12:28:22 +01:00
|
|
|
Z_STEP_WRITE(INVERT_Z_STEP_PIN);
|
2017-04-11 18:11:17 +02:00
|
|
|
|
|
|
|
// Restore direction bits
|
2020-02-24 12:29:13 +01:00
|
|
|
EXTRA_DIR_WAIT_BEFORE();
|
2020-02-14 12:14:37 +01:00
|
|
|
|
2020-02-10 23:58:21 +01:00
|
|
|
X_DIR_WRITE(old_dir.x);
|
|
|
|
Y_DIR_WRITE(old_dir.y);
|
|
|
|
Z_DIR_WRITE(old_dir.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
|
|
|
|
2020-02-24 12:29:13 +01:00
|
|
|
EXTRA_DIR_WAIT_AFTER();
|
2020-02-14 12:14:37 +01: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;
|
2015-10-03 08:08:58 +02:00
|
|
|
|
2015-03-14 12:28:22 +01:00
|
|
|
default: break;
|
|
|
|
}
|
2020-02-14 12:14:37 +01:00
|
|
|
|
2020-02-16 04:42:28 +01:00
|
|
|
#if DISABLED(INTEGRATED_BABYSTEPPING)
|
|
|
|
sei();
|
|
|
|
#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
|
|
|
}
|
2013-10-07 09:14:04 +02:00
|
|
|
|
2017-03-24 06:50:05 +01:00
|
|
|
#endif // BABYSTEPPING
|
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
|
|
|
|
2016-04-27 16:15:20 +02:00
|
|
|
/**
|
|
|
|
* Software-controlled Stepper Motor Current
|
|
|
|
*/
|
|
|
|
|
2016-03-20 02:44:08 +01:00
|
|
|
#if HAS_DIGIPOTSS
|
|
|
|
|
|
|
|
// From Arduino DigitalPotControl example
|
2017-06-25 05:23:45 +02:00
|
|
|
void Stepper::digitalPotWrite(const int16_t address, const int16_t value) {
|
|
|
|
WRITE(DIGIPOTSS_PIN, LOW); // Take the SS pin low to select the chip
|
|
|
|
SPI.transfer(address); // Send the address and value via SPI
|
2012-08-30 09:16:57 +02:00
|
|
|
SPI.transfer(value);
|
2017-06-25 05:23:45 +02:00
|
|
|
WRITE(DIGIPOTSS_PIN, HIGH); // Take the SS pin high to de-select the chip
|
2012-08-30 09:16:57 +02:00
|
|
|
//delay(10);
|
2016-03-20 02:44:08 +01:00
|
|
|
}
|
|
|
|
|
2017-05-09 19:35:43 +02:00
|
|
|
#endif // HAS_DIGIPOTSS
|
2012-08-30 09:16:57 +02:00
|
|
|
|
2017-06-03 07:38:07 +02:00
|
|
|
#if HAS_MOTOR_CURRENT_PWM
|
2013-08-01 15:06:39 +02:00
|
|
|
|
2017-06-03 07:38:07 +02:00
|
|
|
void Stepper::refresh_motor_power() {
|
2019-03-03 00:29:02 +01:00
|
|
|
if (!initialized) return;
|
2018-10-10 16:45:20 +02:00
|
|
|
LOOP_L_N(i, COUNT(motor_current_setting)) {
|
2017-06-03 07:38:07 +02:00
|
|
|
switch (i) {
|
2019-03-17 05:43:06 +01:00
|
|
|
#if ANY_PIN(MOTOR_CURRENT_PWM_XY, MOTOR_CURRENT_PWM_X, MOTOR_CURRENT_PWM_Y)
|
2017-06-03 07:38:07 +02:00
|
|
|
case 0:
|
|
|
|
#endif
|
|
|
|
#if PIN_EXISTS(MOTOR_CURRENT_PWM_Z)
|
|
|
|
case 1:
|
|
|
|
#endif
|
2019-03-17 05:43:06 +01:00
|
|
|
#if ANY_PIN(MOTOR_CURRENT_PWM_E, MOTOR_CURRENT_PWM_E0, MOTOR_CURRENT_PWM_E1)
|
2017-06-03 07:38:07 +02:00
|
|
|
case 2:
|
|
|
|
#endif
|
|
|
|
digipot_current(i, motor_current_setting[i]);
|
|
|
|
default: break;
|
2016-09-25 13:32:58 +02:00
|
|
|
}
|
2017-06-03 07:38:07 +02:00
|
|
|
}
|
2016-09-25 13:32:58 +02:00
|
|
|
}
|
2012-08-30 09:16:57 +02:00
|
|
|
|
2017-06-03 07:38:07 +02:00
|
|
|
#endif // HAS_MOTOR_CURRENT_PWM
|
|
|
|
|
2019-02-27 04:03:13 +01:00
|
|
|
#if !MB(PRINTRBOARD_G2)
|
2017-06-03 07:38:07 +02:00
|
|
|
|
2019-02-27 04:03:13 +01:00
|
|
|
#if HAS_DIGIPOTSS || HAS_MOTOR_CURRENT_PWM
|
2017-06-25 05:23:45 +02:00
|
|
|
|
2019-02-27 04:03:13 +01:00
|
|
|
void Stepper::digipot_current(const uint8_t driver, const int16_t current) {
|
2017-06-25 05:23:45 +02:00
|
|
|
|
2019-02-27 04:03:13 +01:00
|
|
|
#if HAS_DIGIPOTSS
|
2017-06-25 05:23:45 +02:00
|
|
|
|
2019-02-27 04:03:13 +01:00
|
|
|
const uint8_t digipot_ch[] = DIGIPOT_CHANNELS;
|
|
|
|
digitalPotWrite(digipot_ch[driver], current);
|
2017-06-03 07:38:07 +02:00
|
|
|
|
2019-02-27 04:03:13 +01:00
|
|
|
#elif HAS_MOTOR_CURRENT_PWM
|
2017-06-03 07:38:07 +02:00
|
|
|
|
2019-03-03 00:29:02 +01:00
|
|
|
if (!initialized) return;
|
|
|
|
|
2019-02-27 04:03:13 +01:00
|
|
|
if (WITHIN(driver, 0, COUNT(motor_current_setting) - 1))
|
|
|
|
motor_current_setting[driver] = current; // update motor_current_setting
|
2014-04-25 06:57:11 +02:00
|
|
|
|
2019-07-02 11:04:49 +02:00
|
|
|
#define _WRITE_CURRENT_PWM(P) analogWrite(pin_t(MOTOR_CURRENT_PWM_## P ##_PIN), 255L * current / (MOTOR_CURRENT_PWM_RANGE))
|
2019-02-27 04:03:13 +01:00
|
|
|
switch (driver) {
|
|
|
|
case 0:
|
|
|
|
#if PIN_EXISTS(MOTOR_CURRENT_PWM_X)
|
|
|
|
_WRITE_CURRENT_PWM(X);
|
|
|
|
#endif
|
|
|
|
#if PIN_EXISTS(MOTOR_CURRENT_PWM_Y)
|
|
|
|
_WRITE_CURRENT_PWM(Y);
|
|
|
|
#endif
|
|
|
|
#if PIN_EXISTS(MOTOR_CURRENT_PWM_XY)
|
|
|
|
_WRITE_CURRENT_PWM(XY);
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
#if PIN_EXISTS(MOTOR_CURRENT_PWM_Z)
|
|
|
|
_WRITE_CURRENT_PWM(Z);
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
#if PIN_EXISTS(MOTOR_CURRENT_PWM_E)
|
|
|
|
_WRITE_CURRENT_PWM(E);
|
|
|
|
#endif
|
|
|
|
#if PIN_EXISTS(MOTOR_CURRENT_PWM_E0)
|
|
|
|
_WRITE_CURRENT_PWM(E0);
|
|
|
|
#endif
|
|
|
|
#if PIN_EXISTS(MOTOR_CURRENT_PWM_E1)
|
|
|
|
_WRITE_CURRENT_PWM(E1);
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
2017-06-03 07:38:07 +02:00
|
|
|
|
2019-02-27 04:03:13 +01:00
|
|
|
void Stepper::digipot_init() {
|
2017-06-03 07:38:07 +02:00
|
|
|
|
2019-02-27 04:03:13 +01:00
|
|
|
#if HAS_DIGIPOTSS
|
2017-06-03 07:38:07 +02:00
|
|
|
|
2019-02-27 04:03:13 +01:00
|
|
|
static const uint8_t digipot_motor_current[] = DIGIPOT_MOTOR_CURRENT;
|
2017-06-03 07:38:07 +02:00
|
|
|
|
2019-02-27 04:03:13 +01:00
|
|
|
SPI.begin();
|
|
|
|
SET_OUTPUT(DIGIPOTSS_PIN);
|
2017-06-03 07:38:07 +02:00
|
|
|
|
2019-02-27 04:03:13 +01:00
|
|
|
for (uint8_t i = 0; i < COUNT(digipot_motor_current); i++) {
|
|
|
|
//digitalPotWrite(digipot_ch[i], digipot_motor_current[i]);
|
|
|
|
digipot_current(i, digipot_motor_current[i]);
|
|
|
|
}
|
2017-06-03 07:38:07 +02:00
|
|
|
|
2019-02-27 04:03:13 +01:00
|
|
|
#elif HAS_MOTOR_CURRENT_PWM
|
|
|
|
|
|
|
|
#if PIN_EXISTS(MOTOR_CURRENT_PWM_X)
|
2019-03-13 12:51:15 +01:00
|
|
|
SET_PWM(MOTOR_CURRENT_PWM_X_PIN);
|
2019-02-27 04:03:13 +01:00
|
|
|
#endif
|
|
|
|
#if PIN_EXISTS(MOTOR_CURRENT_PWM_Y)
|
2019-03-13 12:51:15 +01:00
|
|
|
SET_PWM(MOTOR_CURRENT_PWM_Y_PIN);
|
2019-02-27 04:03:13 +01:00
|
|
|
#endif
|
|
|
|
#if PIN_EXISTS(MOTOR_CURRENT_PWM_XY)
|
2019-03-13 12:51:15 +01:00
|
|
|
SET_PWM(MOTOR_CURRENT_PWM_XY_PIN);
|
2019-02-27 04:03:13 +01:00
|
|
|
#endif
|
|
|
|
#if PIN_EXISTS(MOTOR_CURRENT_PWM_Z)
|
2019-03-13 12:51:15 +01:00
|
|
|
SET_PWM(MOTOR_CURRENT_PWM_Z_PIN);
|
2019-02-27 04:03:13 +01:00
|
|
|
#endif
|
|
|
|
#if PIN_EXISTS(MOTOR_CURRENT_PWM_E)
|
2019-03-13 12:51:15 +01:00
|
|
|
SET_PWM(MOTOR_CURRENT_PWM_E_PIN);
|
2019-02-27 04:03:13 +01:00
|
|
|
#endif
|
|
|
|
#if PIN_EXISTS(MOTOR_CURRENT_PWM_E0)
|
2019-03-13 12:51:15 +01:00
|
|
|
SET_PWM(MOTOR_CURRENT_PWM_E0_PIN);
|
2019-02-27 04:03:13 +01:00
|
|
|
#endif
|
|
|
|
#if PIN_EXISTS(MOTOR_CURRENT_PWM_E1)
|
2019-03-13 12:51:15 +01:00
|
|
|
SET_PWM(MOTOR_CURRENT_PWM_E1_PIN);
|
2019-02-27 04:03:13 +01:00
|
|
|
#endif
|
2017-06-03 07:38:07 +02:00
|
|
|
|
2019-02-27 04:03:13 +01:00
|
|
|
refresh_motor_power();
|
2017-06-03 07:38:07 +02:00
|
|
|
|
2019-02-27 04:03:13 +01:00
|
|
|
// Set Timer5 to 31khz so the PWM of the motor power is as constant as possible. (removes a buzzing noise)
|
|
|
|
#ifdef __AVR__
|
|
|
|
SET_CS5(PRESCALER_1);
|
|
|
|
#endif
|
2018-11-14 07:27:39 +01:00
|
|
|
#endif
|
2019-02-27 04:03:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2019-09-30 09:47:19 +02:00
|
|
|
#else // PRINTRBOARD_G2
|
2019-02-27 04:03:13 +01:00
|
|
|
|
2019-09-30 09:47:19 +02:00
|
|
|
#include HAL_PATH(../HAL, fastio/G2_PWM.h)
|
2017-06-03 07:38:07 +02:00
|
|
|
|
2016-09-25 13:32:58 +02:00
|
|
|
#endif
|
2012-08-30 09:16:57 +02:00
|
|
|
|
2016-09-25 13:32:58 +02:00
|
|
|
#if HAS_MICROSTEPS
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Software-controlled Microstepping
|
|
|
|
*/
|
2016-04-27 16:15:20 +02:00
|
|
|
|
2016-09-25 13:32:58 +02:00
|
|
|
void Stepper::microstep_init() {
|
2018-10-11 07:56:26 +02:00
|
|
|
#if HAS_X_MICROSTEPS
|
|
|
|
SET_OUTPUT(X_MS1_PIN);
|
|
|
|
SET_OUTPUT(X_MS2_PIN);
|
|
|
|
#if PIN_EXISTS(X_MS3)
|
|
|
|
SET_OUTPUT(X_MS3_PIN);
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#if HAS_X2_MICROSTEPS
|
|
|
|
SET_OUTPUT(X2_MS1_PIN);
|
|
|
|
SET_OUTPUT(X2_MS2_PIN);
|
|
|
|
#if PIN_EXISTS(X2_MS3)
|
|
|
|
SET_OUTPUT(X2_MS3_PIN);
|
|
|
|
#endif
|
|
|
|
#endif
|
2017-04-15 01:00:33 +02:00
|
|
|
#if HAS_Y_MICROSTEPS
|
2016-09-25 13:32:58 +02:00
|
|
|
SET_OUTPUT(Y_MS1_PIN);
|
|
|
|
SET_OUTPUT(Y_MS2_PIN);
|
2018-10-11 07:56:26 +02:00
|
|
|
#if PIN_EXISTS(Y_MS3)
|
|
|
|
SET_OUTPUT(Y_MS3_PIN);
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#if HAS_Y2_MICROSTEPS
|
|
|
|
SET_OUTPUT(Y2_MS1_PIN);
|
|
|
|
SET_OUTPUT(Y2_MS2_PIN);
|
|
|
|
#if PIN_EXISTS(Y2_MS3)
|
|
|
|
SET_OUTPUT(Y2_MS3_PIN);
|
|
|
|
#endif
|
2016-09-25 13:32:58 +02:00
|
|
|
#endif
|
2017-04-15 01:00:33 +02:00
|
|
|
#if HAS_Z_MICROSTEPS
|
2016-09-25 13:32:58 +02:00
|
|
|
SET_OUTPUT(Z_MS1_PIN);
|
|
|
|
SET_OUTPUT(Z_MS2_PIN);
|
2018-10-11 07:56:26 +02:00
|
|
|
#if PIN_EXISTS(Z_MS3)
|
|
|
|
SET_OUTPUT(Z_MS3_PIN);
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#if HAS_Z2_MICROSTEPS
|
|
|
|
SET_OUTPUT(Z2_MS1_PIN);
|
|
|
|
SET_OUTPUT(Z2_MS2_PIN);
|
|
|
|
#if PIN_EXISTS(Z2_MS3)
|
|
|
|
SET_OUTPUT(Z2_MS3_PIN);
|
|
|
|
#endif
|
2016-09-25 13:32:58 +02:00
|
|
|
#endif
|
2018-10-11 07:56:26 +02:00
|
|
|
#if HAS_Z3_MICROSTEPS
|
|
|
|
SET_OUTPUT(Z3_MS1_PIN);
|
|
|
|
SET_OUTPUT(Z3_MS2_PIN);
|
|
|
|
#if PIN_EXISTS(Z3_MS3)
|
|
|
|
SET_OUTPUT(Z3_MS3_PIN);
|
|
|
|
#endif
|
2018-10-12 04:40:55 +02:00
|
|
|
#endif
|
2020-01-20 06:35:07 +01:00
|
|
|
#if HAS_Z4_MICROSTEPS
|
|
|
|
SET_OUTPUT(Z4_MS1_PIN);
|
|
|
|
SET_OUTPUT(Z4_MS2_PIN);
|
|
|
|
#if PIN_EXISTS(Z4_MS3)
|
|
|
|
SET_OUTPUT(Z4_MS3_PIN);
|
|
|
|
#endif
|
|
|
|
#endif
|
2017-04-15 01:00:33 +02:00
|
|
|
#if HAS_E0_MICROSTEPS
|
2016-09-25 13:32:58 +02:00
|
|
|
SET_OUTPUT(E0_MS1_PIN);
|
|
|
|
SET_OUTPUT(E0_MS2_PIN);
|
2018-10-11 07:56:26 +02:00
|
|
|
#if PIN_EXISTS(E0_MS3)
|
|
|
|
SET_OUTPUT(E0_MS3_PIN);
|
|
|
|
#endif
|
2016-09-25 13:32:58 +02:00
|
|
|
#endif
|
2017-04-15 01:00:33 +02:00
|
|
|
#if HAS_E1_MICROSTEPS
|
2016-09-25 13:32:58 +02:00
|
|
|
SET_OUTPUT(E1_MS1_PIN);
|
|
|
|
SET_OUTPUT(E1_MS2_PIN);
|
2018-10-11 07:56:26 +02:00
|
|
|
#if PIN_EXISTS(E1_MS3)
|
|
|
|
SET_OUTPUT(E1_MS3_PIN);
|
|
|
|
#endif
|
2014-04-25 06:57:11 +02:00
|
|
|
#endif
|
2017-04-15 01:00:33 +02:00
|
|
|
#if HAS_E2_MICROSTEPS
|
2017-04-15 00:14:14 +02:00
|
|
|
SET_OUTPUT(E2_MS1_PIN);
|
|
|
|
SET_OUTPUT(E2_MS2_PIN);
|
2018-10-11 07:56:26 +02:00
|
|
|
#if PIN_EXISTS(E2_MS3)
|
|
|
|
SET_OUTPUT(E2_MS3_PIN);
|
|
|
|
#endif
|
2017-04-15 00:14:14 +02:00
|
|
|
#endif
|
2017-04-15 01:00:33 +02:00
|
|
|
#if HAS_E3_MICROSTEPS
|
2017-04-15 00:14:14 +02:00
|
|
|
SET_OUTPUT(E3_MS1_PIN);
|
|
|
|
SET_OUTPUT(E3_MS2_PIN);
|
2018-10-11 07:56:26 +02:00
|
|
|
#if PIN_EXISTS(E3_MS3)
|
|
|
|
SET_OUTPUT(E3_MS3_PIN);
|
|
|
|
#endif
|
2017-04-15 00:14:14 +02:00
|
|
|
#endif
|
2017-04-15 01:00:33 +02:00
|
|
|
#if HAS_E4_MICROSTEPS
|
2017-04-15 00:14:14 +02:00
|
|
|
SET_OUTPUT(E4_MS1_PIN);
|
|
|
|
SET_OUTPUT(E4_MS2_PIN);
|
2018-10-11 07:56:26 +02:00
|
|
|
#if PIN_EXISTS(E4_MS3)
|
|
|
|
SET_OUTPUT(E4_MS3_PIN);
|
|
|
|
#endif
|
2017-04-15 00:14:14 +02:00
|
|
|
#endif
|
2018-09-13 08:35:55 +02:00
|
|
|
#if HAS_E5_MICROSTEPS
|
|
|
|
SET_OUTPUT(E5_MS1_PIN);
|
|
|
|
SET_OUTPUT(E5_MS2_PIN);
|
2018-10-11 07:56:26 +02:00
|
|
|
#if PIN_EXISTS(E5_MS3)
|
|
|
|
SET_OUTPUT(E5_MS3_PIN);
|
|
|
|
#endif
|
2018-09-13 08:35:55 +02:00
|
|
|
#endif
|
2020-01-25 09:13:39 +01:00
|
|
|
#if HAS_E6_MICROSTEPS
|
|
|
|
SET_OUTPUT(E6_MS1_PIN);
|
|
|
|
SET_OUTPUT(E6_MS2_PIN);
|
|
|
|
#if PIN_EXISTS(E6_MS3)
|
|
|
|
SET_OUTPUT(E6_MS3_PIN);
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#if HAS_E7_MICROSTEPS
|
|
|
|
SET_OUTPUT(E7_MS1_PIN);
|
|
|
|
SET_OUTPUT(E7_MS2_PIN);
|
|
|
|
#if PIN_EXISTS(E7_MS3)
|
|
|
|
SET_OUTPUT(E7_MS3_PIN);
|
|
|
|
#endif
|
|
|
|
#endif
|
2018-11-14 07:27:39 +01:00
|
|
|
|
2016-09-25 13:32:58 +02:00
|
|
|
static const uint8_t microstep_modes[] = MICROSTEP_MODES;
|
|
|
|
for (uint16_t i = 0; i < COUNT(microstep_modes); i++)
|
|
|
|
microstep_mode(i, microstep_modes[i]);
|
2012-08-30 09:16:57 +02:00
|
|
|
}
|
2016-09-25 13:32:58 +02:00
|
|
|
|
2018-10-11 07:56:26 +02:00
|
|
|
void Stepper::microstep_ms(const uint8_t driver, const int8_t ms1, const int8_t ms2, const int8_t ms3) {
|
2016-09-25 13:32:58 +02:00
|
|
|
if (ms1 >= 0) switch (driver) {
|
2018-10-11 07:56:26 +02:00
|
|
|
#if HAS_X_MICROSTEPS || HAS_X2_MICROSTEPS
|
|
|
|
case 0:
|
|
|
|
#if HAS_X_MICROSTEPS
|
|
|
|
WRITE(X_MS1_PIN, ms1);
|
|
|
|
#endif
|
|
|
|
#if HAS_X2_MICROSTEPS
|
|
|
|
WRITE(X2_MS1_PIN, ms1);
|
|
|
|
#endif
|
|
|
|
break;
|
2016-09-25 13:32:58 +02:00
|
|
|
#endif
|
2018-10-11 07:56:26 +02:00
|
|
|
#if HAS_Y_MICROSTEPS || HAS_Y2_MICROSTEPS
|
|
|
|
case 1:
|
|
|
|
#if HAS_Y_MICROSTEPS
|
|
|
|
WRITE(Y_MS1_PIN, ms1);
|
|
|
|
#endif
|
|
|
|
#if HAS_Y2_MICROSTEPS
|
|
|
|
WRITE(Y2_MS1_PIN, ms1);
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
#endif
|
2020-01-20 06:35:07 +01:00
|
|
|
#if HAS_SOME_Z_MICROSTEPS
|
2018-10-11 07:56:26 +02:00
|
|
|
case 2:
|
|
|
|
#if HAS_Z_MICROSTEPS
|
|
|
|
WRITE(Z_MS1_PIN, ms1);
|
|
|
|
#endif
|
|
|
|
#if HAS_Z2_MICROSTEPS
|
|
|
|
WRITE(Z2_MS1_PIN, ms1);
|
|
|
|
#endif
|
|
|
|
#if HAS_Z3_MICROSTEPS
|
|
|
|
WRITE(Z3_MS1_PIN, ms1);
|
|
|
|
#endif
|
2020-01-20 06:35:07 +01:00
|
|
|
#if HAS_Z4_MICROSTEPS
|
|
|
|
WRITE(Z4_MS1_PIN, ms1);
|
|
|
|
#endif
|
2018-10-11 07:56:26 +02:00
|
|
|
break;
|
2016-09-25 13:32:58 +02:00
|
|
|
#endif
|
2017-04-15 01:00:33 +02:00
|
|
|
#if HAS_E0_MICROSTEPS
|
2020-01-25 09:13:39 +01:00
|
|
|
case 3: WRITE(E0_MS1_PIN, ms1); break;
|
2016-09-25 13:32:58 +02:00
|
|
|
#endif
|
2017-04-15 01:00:33 +02:00
|
|
|
#if HAS_E1_MICROSTEPS
|
2020-01-25 09:13:39 +01:00
|
|
|
case 4: WRITE(E1_MS1_PIN, ms1); break;
|
2016-09-25 13:32:58 +02:00
|
|
|
#endif
|
2017-04-15 01:00:33 +02:00
|
|
|
#if HAS_E2_MICROSTEPS
|
2020-01-25 09:13:39 +01:00
|
|
|
case 5: WRITE(E2_MS1_PIN, ms1); break;
|
2017-04-15 00:14:14 +02:00
|
|
|
#endif
|
2017-04-15 01:00:33 +02:00
|
|
|
#if HAS_E3_MICROSTEPS
|
2020-01-25 09:13:39 +01:00
|
|
|
case 6: WRITE(E3_MS1_PIN, ms1); break;
|
2017-04-15 00:14:14 +02:00
|
|
|
#endif
|
2017-04-15 01:00:33 +02:00
|
|
|
#if HAS_E4_MICROSTEPS
|
2020-01-25 09:13:39 +01:00
|
|
|
case 7: WRITE(E4_MS1_PIN, ms1); break;
|
2017-04-15 00:14:14 +02:00
|
|
|
#endif
|
2018-09-13 08:35:55 +02:00
|
|
|
#if HAS_E5_MICROSTEPS
|
2020-01-25 09:13:39 +01:00
|
|
|
case 8: WRITE(E5_MS1_PIN, ms1); break;
|
|
|
|
#endif
|
|
|
|
#if HAS_E6_MICROSTEPS
|
|
|
|
case 9: WRITE(E6_MS1_PIN, ms1); break;
|
|
|
|
#endif
|
|
|
|
#if HAS_E7_MICROSTEPS
|
|
|
|
case 10: WRITE(E7_MS1_PIN, ms1); break;
|
2018-09-13 08:35:55 +02:00
|
|
|
#endif
|
2016-09-25 13:32:58 +02:00
|
|
|
}
|
|
|
|
if (ms2 >= 0) switch (driver) {
|
2018-10-11 07:56:26 +02:00
|
|
|
#if HAS_X_MICROSTEPS || HAS_X2_MICROSTEPS
|
|
|
|
case 0:
|
|
|
|
#if HAS_X_MICROSTEPS
|
|
|
|
WRITE(X_MS2_PIN, ms2);
|
|
|
|
#endif
|
|
|
|
#if HAS_X2_MICROSTEPS
|
|
|
|
WRITE(X2_MS2_PIN, ms2);
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
#if HAS_Y_MICROSTEPS || HAS_Y2_MICROSTEPS
|
|
|
|
case 1:
|
|
|
|
#if HAS_Y_MICROSTEPS
|
|
|
|
WRITE(Y_MS2_PIN, ms2);
|
|
|
|
#endif
|
|
|
|
#if HAS_Y2_MICROSTEPS
|
|
|
|
WRITE(Y2_MS2_PIN, ms2);
|
|
|
|
#endif
|
|
|
|
break;
|
2016-09-25 13:32:58 +02:00
|
|
|
#endif
|
2020-01-20 06:35:07 +01:00
|
|
|
#if HAS_SOME_Z_MICROSTEPS
|
2018-10-11 07:56:26 +02:00
|
|
|
case 2:
|
|
|
|
#if HAS_Z_MICROSTEPS
|
|
|
|
WRITE(Z_MS2_PIN, ms2);
|
|
|
|
#endif
|
|
|
|
#if HAS_Z2_MICROSTEPS
|
|
|
|
WRITE(Z2_MS2_PIN, ms2);
|
|
|
|
#endif
|
|
|
|
#if HAS_Z3_MICROSTEPS
|
|
|
|
WRITE(Z3_MS2_PIN, ms2);
|
|
|
|
#endif
|
2020-01-20 06:35:07 +01:00
|
|
|
#if HAS_Z4_MICROSTEPS
|
|
|
|
WRITE(Z4_MS2_PIN, ms2);
|
|
|
|
#endif
|
2018-10-11 07:56:26 +02:00
|
|
|
break;
|
2016-09-25 13:32:58 +02:00
|
|
|
#endif
|
2017-04-15 01:00:33 +02:00
|
|
|
#if HAS_E0_MICROSTEPS
|
2020-01-25 09:13:39 +01:00
|
|
|
case 3: WRITE(E0_MS2_PIN, ms2); break;
|
2016-09-25 13:32:58 +02:00
|
|
|
#endif
|
2017-04-15 01:00:33 +02:00
|
|
|
#if HAS_E1_MICROSTEPS
|
2020-01-25 09:13:39 +01:00
|
|
|
case 4: WRITE(E1_MS2_PIN, ms2); break;
|
2016-09-25 13:32:58 +02:00
|
|
|
#endif
|
2017-04-15 01:00:33 +02:00
|
|
|
#if HAS_E2_MICROSTEPS
|
2020-01-25 09:13:39 +01:00
|
|
|
case 5: WRITE(E2_MS2_PIN, ms2); break;
|
2017-04-15 00:14:14 +02:00
|
|
|
#endif
|
2017-04-15 01:00:33 +02:00
|
|
|
#if HAS_E3_MICROSTEPS
|
2020-01-25 09:13:39 +01:00
|
|
|
case 6: WRITE(E3_MS2_PIN, ms2); break;
|
2017-04-15 00:14:14 +02:00
|
|
|
#endif
|
2017-04-15 01:00:33 +02:00
|
|
|
#if HAS_E4_MICROSTEPS
|
2020-01-25 09:13:39 +01:00
|
|
|
case 7: WRITE(E4_MS2_PIN, ms2); break;
|
2017-04-15 00:14:14 +02:00
|
|
|
#endif
|
2018-09-13 08:35:55 +02:00
|
|
|
#if HAS_E5_MICROSTEPS
|
2020-01-25 09:13:39 +01:00
|
|
|
case 8: WRITE(E5_MS2_PIN, ms2); break;
|
|
|
|
#endif
|
|
|
|
#if HAS_E6_MICROSTEPS
|
|
|
|
case 9: WRITE(E6_MS2_PIN, ms2); break;
|
|
|
|
#endif
|
|
|
|
#if HAS_E7_MICROSTEPS
|
|
|
|
case 10: WRITE(E7_MS2_PIN, ms2); break;
|
2018-09-13 08:35:55 +02:00
|
|
|
#endif
|
2016-09-25 13:32:58 +02:00
|
|
|
}
|
2018-10-11 07:56:26 +02:00
|
|
|
if (ms3 >= 0) switch (driver) {
|
|
|
|
#if HAS_X_MICROSTEPS || HAS_X2_MICROSTEPS
|
|
|
|
case 0:
|
|
|
|
#if HAS_X_MICROSTEPS && PIN_EXISTS(X_MS3)
|
|
|
|
WRITE(X_MS3_PIN, ms3);
|
|
|
|
#endif
|
|
|
|
#if HAS_X2_MICROSTEPS && PIN_EXISTS(X2_MS3)
|
|
|
|
WRITE(X2_MS3_PIN, ms3);
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
#if HAS_Y_MICROSTEPS || HAS_Y2_MICROSTEPS
|
|
|
|
case 1:
|
|
|
|
#if HAS_Y_MICROSTEPS && PIN_EXISTS(Y_MS3)
|
|
|
|
WRITE(Y_MS3_PIN, ms3);
|
|
|
|
#endif
|
|
|
|
#if HAS_Y2_MICROSTEPS && PIN_EXISTS(Y2_MS3)
|
|
|
|
WRITE(Y2_MS3_PIN, ms3);
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
#endif
|
2020-01-20 06:35:07 +01:00
|
|
|
#if HAS_SOME_Z_MICROSTEPS
|
2018-10-11 07:56:26 +02:00
|
|
|
case 2:
|
|
|
|
#if HAS_Z_MICROSTEPS && PIN_EXISTS(Z_MS3)
|
|
|
|
WRITE(Z_MS3_PIN, ms3);
|
|
|
|
#endif
|
|
|
|
#if HAS_Z2_MICROSTEPS && PIN_EXISTS(Z2_MS3)
|
|
|
|
WRITE(Z2_MS3_PIN, ms3);
|
|
|
|
#endif
|
|
|
|
#if HAS_Z3_MICROSTEPS && PIN_EXISTS(Z3_MS3)
|
|
|
|
WRITE(Z3_MS3_PIN, ms3);
|
|
|
|
#endif
|
2020-01-20 06:35:07 +01:00
|
|
|
#if HAS_Z4_MICROSTEPS && PIN_EXISTS(Z4_MS3)
|
|
|
|
WRITE(Z4_MS3_PIN, ms3);
|
|
|
|
#endif
|
2018-10-11 07:56:26 +02:00
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
#if HAS_E0_MICROSTEPS && PIN_EXISTS(E0_MS3)
|
2020-01-25 09:13:39 +01:00
|
|
|
case 3: WRITE(E0_MS3_PIN, ms3); break;
|
2018-10-11 07:56:26 +02:00
|
|
|
#endif
|
|
|
|
#if HAS_E1_MICROSTEPS && PIN_EXISTS(E1_MS3)
|
2020-01-25 09:13:39 +01:00
|
|
|
case 4: WRITE(E1_MS3_PIN, ms3); break;
|
2018-10-11 07:56:26 +02:00
|
|
|
#endif
|
|
|
|
#if HAS_E2_MICROSTEPS && PIN_EXISTS(E2_MS3)
|
2020-01-25 09:13:39 +01:00
|
|
|
case 5: WRITE(E2_MS3_PIN, ms3); break;
|
2018-10-11 07:56:26 +02:00
|
|
|
#endif
|
|
|
|
#if HAS_E3_MICROSTEPS && PIN_EXISTS(E3_MS3)
|
2020-01-25 09:13:39 +01:00
|
|
|
case 6: WRITE(E3_MS3_PIN, ms3); break;
|
2018-10-11 07:56:26 +02:00
|
|
|
#endif
|
|
|
|
#if HAS_E4_MICROSTEPS && PIN_EXISTS(E4_MS3)
|
2020-01-25 09:13:39 +01:00
|
|
|
case 7: WRITE(E4_MS3_PIN, ms3); break;
|
2018-10-11 07:56:26 +02:00
|
|
|
#endif
|
|
|
|
#if HAS_E5_MICROSTEPS && PIN_EXISTS(E5_MS3)
|
2020-01-25 09:13:39 +01:00
|
|
|
case 8: WRITE(E5_MS3_PIN, ms3); break;
|
|
|
|
#endif
|
|
|
|
#if HAS_E6_MICROSTEPS && PIN_EXISTS(E6_MS3)
|
|
|
|
case 9: WRITE(E6_MS3_PIN, ms3); break;
|
|
|
|
#endif
|
|
|
|
#if HAS_E7_MICROSTEPS && PIN_EXISTS(E7_MS3)
|
|
|
|
case 10: WRITE(E7_MS3_PIN, ms3); break;
|
2018-10-12 04:40:55 +02:00
|
|
|
#endif
|
2018-10-11 07:56:26 +02:00
|
|
|
}
|
2012-08-30 09:16:57 +02:00
|
|
|
}
|
|
|
|
|
2017-06-25 05:23:45 +02:00
|
|
|
void Stepper::microstep_mode(const uint8_t driver, const uint8_t stepping_mode) {
|
2016-09-25 13:32:58 +02:00
|
|
|
switch (stepping_mode) {
|
2018-10-11 07:56:26 +02:00
|
|
|
#if HAS_MICROSTEP1
|
|
|
|
case 1: microstep_ms(driver, MICROSTEP1); break;
|
|
|
|
#endif
|
|
|
|
#if HAS_MICROSTEP2
|
2018-03-04 06:14:52 +01:00
|
|
|
case 2: microstep_ms(driver, MICROSTEP2); break;
|
2018-10-11 07:56:26 +02:00
|
|
|
#endif
|
|
|
|
#if HAS_MICROSTEP4
|
2018-03-04 06:14:52 +01:00
|
|
|
case 4: microstep_ms(driver, MICROSTEP4); break;
|
|
|
|
#endif
|
2018-10-11 07:56:26 +02:00
|
|
|
#if HAS_MICROSTEP8
|
|
|
|
case 8: microstep_ms(driver, MICROSTEP8); break;
|
|
|
|
#endif
|
|
|
|
#if HAS_MICROSTEP16
|
|
|
|
case 16: microstep_ms(driver, MICROSTEP16); break;
|
|
|
|
#endif
|
|
|
|
#if HAS_MICROSTEP32
|
2017-06-18 01:36:10 +02:00
|
|
|
case 32: microstep_ms(driver, MICROSTEP32); break;
|
|
|
|
#endif
|
2018-10-11 07:56:26 +02:00
|
|
|
#if HAS_MICROSTEP64
|
|
|
|
case 64: microstep_ms(driver, MICROSTEP64); break;
|
|
|
|
#endif
|
|
|
|
#if HAS_MICROSTEP128
|
|
|
|
case 128: microstep_ms(driver, MICROSTEP128); break;
|
|
|
|
#endif
|
|
|
|
|
2018-11-29 23:58:58 +01:00
|
|
|
default: SERIAL_ERROR_MSG("Microsteps unavailable"); break;
|
2016-09-25 13:32:58 +02:00
|
|
|
}
|
2012-08-30 09:16:57 +02:00
|
|
|
}
|
|
|
|
|
2016-09-25 13:32:58 +02:00
|
|
|
void Stepper::microstep_readings() {
|
2020-01-09 01:31:57 +01:00
|
|
|
SERIAL_ECHOLNPGM("MS1|MS2|MS3 Pins");
|
2018-10-11 07:56:26 +02:00
|
|
|
#if HAS_X_MICROSTEPS
|
2020-01-09 01:31:57 +01:00
|
|
|
SERIAL_ECHOPGM("X: ");
|
|
|
|
SERIAL_CHAR('0' + READ(X_MS1_PIN), '0' + READ(X_MS2_PIN)
|
|
|
|
#if PIN_EXISTS(X_MS3)
|
|
|
|
, '0' + READ(X_MS3_PIN)
|
|
|
|
#endif
|
|
|
|
);
|
2018-10-11 07:56:26 +02:00
|
|
|
#endif
|
2017-04-15 01:00:33 +02:00
|
|
|
#if HAS_Y_MICROSTEPS
|
2018-11-29 23:58:58 +01:00
|
|
|
SERIAL_ECHOPGM("Y: ");
|
2020-01-09 01:31:57 +01:00
|
|
|
SERIAL_CHAR('0' + READ(Y_MS1_PIN), '0' + READ(Y_MS2_PIN)
|
|
|
|
#if PIN_EXISTS(Y_MS3)
|
|
|
|
, '0' + READ(Y_MS3_PIN)
|
|
|
|
#endif
|
|
|
|
);
|
2016-09-25 13:32:58 +02:00
|
|
|
#endif
|
2017-04-15 01:00:33 +02:00
|
|
|
#if HAS_Z_MICROSTEPS
|
2018-11-29 23:58:58 +01:00
|
|
|
SERIAL_ECHOPGM("Z: ");
|
2020-01-09 01:31:57 +01:00
|
|
|
SERIAL_CHAR('0' + READ(Z_MS1_PIN), '0' + READ(Z_MS2_PIN)
|
|
|
|
#if PIN_EXISTS(Z_MS3)
|
|
|
|
, '0' + READ(Z_MS3_PIN)
|
|
|
|
#endif
|
|
|
|
);
|
2016-09-25 13:32:58 +02:00
|
|
|
#endif
|
2017-04-15 01:00:33 +02:00
|
|
|
#if HAS_E0_MICROSTEPS
|
2018-11-29 23:58:58 +01:00
|
|
|
SERIAL_ECHOPGM("E0: ");
|
2020-01-09 01:31:57 +01:00
|
|
|
SERIAL_CHAR('0' + READ(E0_MS1_PIN), '0' + READ(E0_MS2_PIN)
|
|
|
|
#if PIN_EXISTS(E0_MS3)
|
|
|
|
, '0' + READ(E0_MS3_PIN)
|
|
|
|
#endif
|
|
|
|
);
|
2016-09-25 13:32:58 +02:00
|
|
|
#endif
|
2017-04-15 01:00:33 +02:00
|
|
|
#if HAS_E1_MICROSTEPS
|
2018-11-29 23:58:58 +01:00
|
|
|
SERIAL_ECHOPGM("E1: ");
|
2020-01-09 01:31:57 +01:00
|
|
|
SERIAL_CHAR('0' + READ(E1_MS1_PIN), '0' + READ(E1_MS2_PIN)
|
|
|
|
#if PIN_EXISTS(E1_MS3)
|
|
|
|
, '0' + READ(E1_MS3_PIN)
|
|
|
|
#endif
|
|
|
|
);
|
2016-09-25 13:32:58 +02:00
|
|
|
#endif
|
2017-04-15 01:00:33 +02:00
|
|
|
#if HAS_E2_MICROSTEPS
|
2018-11-29 23:58:58 +01:00
|
|
|
SERIAL_ECHOPGM("E2: ");
|
2020-01-09 01:31:57 +01:00
|
|
|
SERIAL_CHAR('0' + READ(E2_MS1_PIN), '0' + READ(E2_MS2_PIN)
|
|
|
|
#if PIN_EXISTS(E2_MS3)
|
|
|
|
, '0' + READ(E2_MS3_PIN)
|
|
|
|
#endif
|
|
|
|
);
|
2017-04-15 00:14:14 +02:00
|
|
|
#endif
|
2017-04-15 01:00:33 +02:00
|
|
|
#if HAS_E3_MICROSTEPS
|
2018-11-29 23:58:58 +01:00
|
|
|
SERIAL_ECHOPGM("E3: ");
|
2020-01-09 01:31:57 +01:00
|
|
|
SERIAL_CHAR('0' + READ(E3_MS1_PIN), '0' + READ(E3_MS2_PIN)
|
|
|
|
#if PIN_EXISTS(E3_MS3)
|
|
|
|
, '0' + READ(E3_MS3_PIN)
|
|
|
|
#endif
|
|
|
|
);
|
2017-04-15 00:14:14 +02:00
|
|
|
#endif
|
2017-04-15 01:00:33 +02:00
|
|
|
#if HAS_E4_MICROSTEPS
|
2018-11-29 23:58:58 +01:00
|
|
|
SERIAL_ECHOPGM("E4: ");
|
2020-01-09 01:31:57 +01:00
|
|
|
SERIAL_CHAR('0' + READ(E4_MS1_PIN), '0' + READ(E4_MS2_PIN)
|
|
|
|
#if PIN_EXISTS(E4_MS3)
|
|
|
|
, '0' + READ(E4_MS3_PIN)
|
|
|
|
#endif
|
|
|
|
);
|
2017-04-15 00:14:14 +02:00
|
|
|
#endif
|
2018-09-13 08:35:55 +02:00
|
|
|
#if HAS_E5_MICROSTEPS
|
2018-11-29 23:58:58 +01:00
|
|
|
SERIAL_ECHOPGM("E5: ");
|
2020-01-09 01:31:57 +01:00
|
|
|
SERIAL_CHAR('0' + READ(E5_MS1_PIN), '0' + READ(E5_MS2_PIN)
|
|
|
|
#if PIN_EXISTS(E5_MS3)
|
|
|
|
, '0' + READ(E5_MS3_PIN)
|
|
|
|
#endif
|
|
|
|
);
|
2018-09-13 08:35:55 +02:00
|
|
|
#endif
|
2020-01-25 09:13:39 +01:00
|
|
|
#if HAS_E6_MICROSTEPS
|
|
|
|
SERIAL_ECHOPGM("E6: ");
|
|
|
|
SERIAL_CHAR('0' + READ(E6_MS1_PIN), '0' + READ(E6_MS2_PIN)
|
|
|
|
#if PIN_EXISTS(E6_MS3)
|
|
|
|
, '0' + READ(E6_MS3_PIN)
|
|
|
|
#endif
|
|
|
|
);
|
|
|
|
#endif
|
|
|
|
#if HAS_E7_MICROSTEPS
|
|
|
|
SERIAL_ECHOPGM("E7: ");
|
|
|
|
SERIAL_CHAR('0' + READ(E7_MS1_PIN), '0' + READ(E7_MS2_PIN)
|
|
|
|
#if PIN_EXISTS(E7_MS3)
|
|
|
|
, '0' + READ(E7_MS3_PIN)
|
|
|
|
#endif
|
|
|
|
);
|
|
|
|
#endif
|
2016-09-25 13:32:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // HAS_MICROSTEPS
|