2018-10-03 03:26:07 -05:00
|
|
|
/**
|
|
|
|
* Marlin 3D Printer Firmware
|
2020-02-03 08:00:57 -06:00
|
|
|
* Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
2018-10-03 03:26:07 -05:00
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
2019-06-27 23:57:50 -05:00
|
|
|
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
|
|
|
|
* Copyright (c) 2017 Victor Perez
|
2018-10-03 03:26:07 -05:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
2018-12-03 06:55:49 -06:00
|
|
|
#if defined(ARDUINO_ARCH_STM32) && !defined(STM32GENERIC)
|
|
|
|
|
2018-10-03 03:26:07 -05:00
|
|
|
#include "../../inc/MarlinConfig.h"
|
|
|
|
|
|
|
|
#if HAS_SERVOS
|
|
|
|
|
2019-09-02 19:49:58 -05:00
|
|
|
#include "Servo.h"
|
2018-10-03 03:26:07 -05:00
|
|
|
|
2019-12-11 01:44:05 -06:00
|
|
|
static uint_fast8_t servoCount = 0;
|
2020-05-11 01:10:20 -05:00
|
|
|
static libServo *servos[NUM_SERVOS] = {0};
|
2019-12-11 01:44:05 -06:00
|
|
|
constexpr millis_t servoDelay[] = SERVO_DELAY;
|
|
|
|
static_assert(COUNT(servoDelay) == NUM_SERVOS, "SERVO_DELAY must be an array NUM_SERVOS long.");
|
|
|
|
|
|
|
|
libServo::libServo()
|
2020-05-11 01:10:20 -05:00
|
|
|
: delay(servoDelay[servoCount]),
|
|
|
|
was_attached_before_pause(false),
|
|
|
|
value_before_pause(0)
|
|
|
|
{
|
|
|
|
servos[servoCount++] = this;
|
|
|
|
}
|
2018-10-03 03:26:07 -05:00
|
|
|
|
|
|
|
int8_t libServo::attach(const int pin) {
|
2019-12-11 01:44:05 -06:00
|
|
|
if (servoCount >= MAX_SERVOS) return -1;
|
|
|
|
if (pin > 0) servo_pin = pin;
|
2020-05-11 01:10:20 -05:00
|
|
|
return stm32_servo.attach(servo_pin);
|
2018-10-03 03:26:07 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
int8_t libServo::attach(const int pin, const int min, const int max) {
|
2019-12-11 01:44:05 -06:00
|
|
|
if (servoCount >= MAX_SERVOS) return -1;
|
|
|
|
if (pin > 0) servo_pin = pin;
|
2020-05-11 01:10:20 -05:00
|
|
|
return stm32_servo.attach(servo_pin, min, max);
|
2018-10-03 03:26:07 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void libServo::move(const int value) {
|
2019-09-25 08:29:59 -05:00
|
|
|
if (attach(0) >= 0) {
|
2020-05-11 01:10:20 -05:00
|
|
|
stm32_servo.write(value);
|
2019-12-11 01:44:05 -06:00
|
|
|
safe_delay(delay);
|
2020-04-22 16:35:03 -05:00
|
|
|
TERN_(DEACTIVATE_SERVOS_AFTER_MOVE, detach());
|
2018-10-03 03:26:07 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-11 01:10:20 -05:00
|
|
|
void libServo::pause() {
|
|
|
|
was_attached_before_pause = stm32_servo.attached();
|
|
|
|
if (was_attached_before_pause) {
|
|
|
|
value_before_pause = stm32_servo.read();
|
|
|
|
stm32_servo.detach();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void libServo::resume() {
|
|
|
|
if (was_attached_before_pause) {
|
|
|
|
attach();
|
|
|
|
move(value_before_pause);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void libServo::pause_all_servos() {
|
|
|
|
for (auto& servo : servos)
|
|
|
|
if (servo) servo->pause();
|
|
|
|
}
|
|
|
|
|
|
|
|
void libServo::resume_all_servos() {
|
|
|
|
for (auto& servo : servos)
|
|
|
|
if (servo) servo->resume();
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // HAS_SERVOS
|
2019-06-28 23:04:33 -05:00
|
|
|
#endif // ARDUINO_ARCH_STM32 && !STM32GENERIC
|