2016-03-25 06:19:46 +00:00
|
|
|
/**
|
2016-03-24 18:01:20 +00:00
|
|
|
* Marlin 3D Printer Firmware
|
|
|
|
* Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
|
|
|
* Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2016-03-25 06:19:46 +00:00
|
|
|
/**
|
2016-06-23 21:33:29 +00:00
|
|
|
* servo.cpp - Interrupt driven Servo library for Arduino using 16 bit timers- Version 2
|
|
|
|
* Copyright (c) 2009 Michael Margolis. All right reserved.
|
2013-05-18 21:12:28 +00:00
|
|
|
*/
|
|
|
|
|
2016-03-25 06:19:46 +00:00
|
|
|
/**
|
2016-06-23 21:33:29 +00:00
|
|
|
* A servo is activated by creating an instance of the Servo class passing the desired pin to the attach() method.
|
|
|
|
* The servos are pulsed in the background using the value most recently written using the write() method
|
|
|
|
*
|
|
|
|
* Note that analogWrite of PWM on pins associated with the timer are disabled when the first servo is attached.
|
|
|
|
* Timers are seized as needed in groups of 12 servos - 24 servos use two timers, 48 servos will use four.
|
|
|
|
*
|
|
|
|
* The methods are:
|
|
|
|
*
|
|
|
|
* Servo - Class for manipulating servo motors connected to Arduino pins.
|
|
|
|
*
|
|
|
|
* attach(pin) - Attach a servo motor to an i/o pin.
|
|
|
|
* attach(pin, min, max) - Attach to a pin, setting min and max values in microseconds
|
|
|
|
* Default min is 544, max is 2400
|
|
|
|
*
|
|
|
|
* write() - Set the servo angle in degrees. (Invalid angles —over MIN_PULSE_WIDTH— are treated as µs.)
|
|
|
|
* writeMicroseconds() - Set the servo pulse width in microseconds.
|
|
|
|
* move(pin, angle) - Sequence of attach(pin), write(angle), delay(SERVO_DELAY).
|
|
|
|
* With DEACTIVATE_SERVOS_AFTER_MOVE it detaches after SERVO_DELAY.
|
|
|
|
* read() - Get the last-written servo pulse width as an angle between 0 and 180.
|
|
|
|
* readMicroseconds() - Get the last-written servo pulse width in microseconds.
|
|
|
|
* attached() - Return true if a servo is attached.
|
|
|
|
* detach() - Stop an attached servo from pulsing its i/o pin.
|
|
|
|
*
|
|
|
|
*/
|
2017-06-17 23:36:10 +00:00
|
|
|
|
|
|
|
#ifdef ARDUINO_ARCH_AVR
|
|
|
|
|
|
|
|
#include "../../../MarlinConfig.h"
|
2013-06-06 16:18:03 +00:00
|
|
|
|
2015-07-31 05:21:18 +00:00
|
|
|
#if HAS_SERVOS
|
2015-01-24 06:26:52 +00:00
|
|
|
|
2013-05-18 21:12:28 +00:00
|
|
|
#include <avr/interrupt.h>
|
|
|
|
#include <Arduino.h>
|
|
|
|
|
2017-06-17 23:36:10 +00:00
|
|
|
#include "../servo.h"
|
|
|
|
#include "../servo_private.h"
|
2013-05-18 21:12:28 +00:00
|
|
|
|
|
|
|
static volatile int8_t Channel[_Nbr_16timers ]; // counter for the servo being pulsed for each timer (or -1 if refresh interval)
|
|
|
|
|
|
|
|
|
|
|
|
/************ static functions common to all instances ***********************/
|
|
|
|
|
2015-10-03 06:08:58 +00:00
|
|
|
static inline void handle_interrupts(timer16_Sequence_t timer, volatile uint16_t* TCNTn, volatile uint16_t* OCRnA) {
|
2015-01-24 06:26:52 +00:00
|
|
|
if (Channel[timer] < 0)
|
2013-05-18 21:12:28 +00:00
|
|
|
*TCNTn = 0; // channel set to -1 indicated that refresh interval completed so reset the timer
|
2015-01-24 06:26:52 +00:00
|
|
|
else {
|
2015-10-03 06:08:58 +00:00
|
|
|
if (SERVO_INDEX(timer, Channel[timer]) < ServoCount && SERVO(timer, Channel[timer]).Pin.isActive)
|
|
|
|
digitalWrite(SERVO(timer, Channel[timer]).Pin.nbr, LOW); // pulse this channel low if activated
|
2013-05-18 21:12:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Channel[timer]++; // increment to the next channel
|
2015-10-03 06:08:58 +00:00
|
|
|
if (SERVO_INDEX(timer, Channel[timer]) < ServoCount && Channel[timer] < SERVOS_PER_TIMER) {
|
|
|
|
*OCRnA = *TCNTn + SERVO(timer, Channel[timer]).ticks;
|
|
|
|
if (SERVO(timer, Channel[timer]).Pin.isActive) // check if activated
|
2017-06-27 07:36:19 +00:00
|
|
|
digitalWrite(SERVO(timer, Channel[timer]).Pin.nbr, HIGH); // it's an active channel so pulse it high
|
2013-05-18 21:12:28 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
// finished all channels so wait for the refresh period to expire before starting over
|
2015-10-03 06:08:58 +00:00
|
|
|
if (((unsigned)*TCNTn) + 4 < usToTicks(REFRESH_INTERVAL)) // allow a few ticks to ensure the next OCR1A not missed
|
2013-05-18 21:12:28 +00:00
|
|
|
*OCRnA = (unsigned int)usToTicks(REFRESH_INTERVAL);
|
|
|
|
else
|
|
|
|
*OCRnA = *TCNTn + 4; // at least REFRESH_INTERVAL has elapsed
|
|
|
|
Channel[timer] = -1; // this will get incremented at the end of the refresh period to start again at the first channel
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef WIRING // Wiring pre-defines signal handlers so don't define any if compiling for the Wiring platform
|
|
|
|
|
2015-01-24 06:26:52 +00:00
|
|
|
// Interrupt handlers for Arduino
|
2015-07-31 05:21:18 +00:00
|
|
|
#if ENABLED(_useTimer1)
|
2015-01-24 06:26:52 +00:00
|
|
|
SIGNAL (TIMER1_COMPA_vect) { handle_interrupts(_timer1, &TCNT1, &OCR1A); }
|
|
|
|
#endif
|
|
|
|
|
2015-07-31 05:21:18 +00:00
|
|
|
#if ENABLED(_useTimer3)
|
2015-01-24 06:26:52 +00:00
|
|
|
SIGNAL (TIMER3_COMPA_vect) { handle_interrupts(_timer3, &TCNT3, &OCR3A); }
|
|
|
|
#endif
|
|
|
|
|
2015-07-31 05:21:18 +00:00
|
|
|
#if ENABLED(_useTimer4)
|
2015-01-24 06:26:52 +00:00
|
|
|
SIGNAL (TIMER4_COMPA_vect) { handle_interrupts(_timer4, &TCNT4, &OCR4A); }
|
|
|
|
#endif
|
|
|
|
|
2015-07-31 05:21:18 +00:00
|
|
|
#if ENABLED(_useTimer5)
|
2015-01-24 06:26:52 +00:00
|
|
|
SIGNAL (TIMER5_COMPA_vect) { handle_interrupts(_timer5, &TCNT5, &OCR5A); }
|
|
|
|
#endif
|
|
|
|
|
2017-03-20 06:42:41 +00:00
|
|
|
#else // WIRING
|
2015-01-24 06:26:52 +00:00
|
|
|
|
|
|
|
// Interrupt handlers for Wiring
|
2015-07-31 05:21:18 +00:00
|
|
|
#if ENABLED(_useTimer1)
|
2015-01-24 06:26:52 +00:00
|
|
|
void Timer1Service() { handle_interrupts(_timer1, &TCNT1, &OCR1A); }
|
|
|
|
#endif
|
2015-07-31 05:21:18 +00:00
|
|
|
#if ENABLED(_useTimer3)
|
2015-01-24 06:26:52 +00:00
|
|
|
void Timer3Service() { handle_interrupts(_timer3, &TCNT3, &OCR3A); }
|
|
|
|
#endif
|
|
|
|
|
2017-03-20 06:42:41 +00:00
|
|
|
#endif // WIRING
|
2015-01-24 06:26:52 +00:00
|
|
|
|
2017-06-17 23:36:10 +00:00
|
|
|
/****************** end of static functions ******************************/
|
2015-01-24 06:26:52 +00:00
|
|
|
|
2017-06-17 23:36:10 +00:00
|
|
|
void initISR(timer16_Sequence_t timer) {
|
2015-07-31 05:21:18 +00:00
|
|
|
#if ENABLED(_useTimer1)
|
2015-01-24 06:26:52 +00:00
|
|
|
if (timer == _timer1) {
|
|
|
|
TCCR1A = 0; // normal counting mode
|
|
|
|
TCCR1B = _BV(CS11); // set prescaler of 8
|
|
|
|
TCNT1 = 0; // clear the timer count
|
|
|
|
#if defined(__AVR_ATmega8__)|| defined(__AVR_ATmega128__)
|
2016-02-27 12:51:44 +00:00
|
|
|
SBI(TIFR, OCF1A); // clear any pending interrupts;
|
|
|
|
SBI(TIMSK, OCIE1A); // enable the output compare interrupt
|
2015-01-24 06:26:52 +00:00
|
|
|
#else
|
|
|
|
// here if not ATmega8 or ATmega128
|
2016-02-27 12:51:44 +00:00
|
|
|
SBI(TIFR1, OCF1A); // clear any pending interrupts;
|
|
|
|
SBI(TIMSK1, OCIE1A); // enable the output compare interrupt
|
2015-01-24 06:26:52 +00:00
|
|
|
#endif
|
2015-06-28 02:20:32 +00:00
|
|
|
#ifdef WIRING
|
2015-01-24 06:26:52 +00:00
|
|
|
timerAttach(TIMER1OUTCOMPAREA_INT, Timer1Service);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-07-31 05:21:18 +00:00
|
|
|
#if ENABLED(_useTimer3)
|
2015-01-24 06:26:52 +00:00
|
|
|
if (timer == _timer3) {
|
|
|
|
TCCR3A = 0; // normal counting mode
|
|
|
|
TCCR3B = _BV(CS31); // set prescaler of 8
|
|
|
|
TCNT3 = 0; // clear the timer count
|
2015-06-28 02:20:32 +00:00
|
|
|
#ifdef __AVR_ATmega128__
|
2016-02-27 12:51:44 +00:00
|
|
|
SBI(TIFR, OCF3A); // clear any pending interrupts;
|
|
|
|
SBI(ETIMSK, OCIE3A); // enable the output compare interrupt
|
2015-01-24 06:26:52 +00:00
|
|
|
#else
|
2017-04-12 05:08:24 +00:00
|
|
|
SBI(TIFR3, OCF3A); // clear any pending interrupts;
|
|
|
|
SBI(TIMSK3, OCIE3A); // enable the output compare interrupt
|
2015-01-24 06:26:52 +00:00
|
|
|
#endif
|
2015-06-28 02:20:32 +00:00
|
|
|
#ifdef WIRING
|
2015-01-24 06:26:52 +00:00
|
|
|
timerAttach(TIMER3OUTCOMPAREA_INT, Timer3Service); // for Wiring platform only
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-07-31 05:21:18 +00:00
|
|
|
#if ENABLED(_useTimer4)
|
2015-01-24 06:26:52 +00:00
|
|
|
if (timer == _timer4) {
|
|
|
|
TCCR4A = 0; // normal counting mode
|
|
|
|
TCCR4B = _BV(CS41); // set prescaler of 8
|
|
|
|
TCNT4 = 0; // clear the timer count
|
|
|
|
TIFR4 = _BV(OCF4A); // clear any pending interrupts;
|
2017-04-12 05:08:24 +00:00
|
|
|
TIMSK4 = _BV(OCIE4A); // enable the output compare interrupt
|
2015-01-24 06:26:52 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-07-31 05:21:18 +00:00
|
|
|
#if ENABLED(_useTimer5)
|
2015-01-24 06:26:52 +00:00
|
|
|
if (timer == _timer5) {
|
|
|
|
TCCR5A = 0; // normal counting mode
|
|
|
|
TCCR5B = _BV(CS51); // set prescaler of 8
|
|
|
|
TCNT5 = 0; // clear the timer count
|
|
|
|
TIFR5 = _BV(OCF5A); // clear any pending interrupts;
|
2017-04-12 05:08:24 +00:00
|
|
|
TIMSK5 = _BV(OCIE5A); // enable the output compare interrupt
|
2015-01-24 06:26:52 +00:00
|
|
|
}
|
|
|
|
#endif
|
2013-05-18 21:12:28 +00:00
|
|
|
}
|
|
|
|
|
2017-06-17 23:36:10 +00:00
|
|
|
void finISR(timer16_Sequence_t timer) {
|
2015-01-24 06:26:52 +00:00
|
|
|
// Disable use of the given timer
|
2015-06-28 02:20:32 +00:00
|
|
|
#ifdef WIRING
|
2015-01-24 06:26:52 +00:00
|
|
|
if (timer == _timer1) {
|
2016-02-27 12:51:44 +00:00
|
|
|
CBI(
|
2017-04-12 05:08:24 +00:00
|
|
|
#if defined(__AVR_ATmega1281__) || defined(__AVR_ATmega2561__)
|
|
|
|
TIMSK1
|
|
|
|
#else
|
|
|
|
TIMSK
|
|
|
|
#endif
|
2016-02-27 12:51:44 +00:00
|
|
|
, OCIE1A); // disable timer 1 output compare interrupt
|
2015-01-24 06:26:52 +00:00
|
|
|
timerDetach(TIMER1OUTCOMPAREA_INT);
|
|
|
|
}
|
|
|
|
else if (timer == _timer3) {
|
2016-02-27 12:51:44 +00:00
|
|
|
CBI(
|
2017-04-12 05:08:24 +00:00
|
|
|
#if defined(__AVR_ATmega1281__) || defined(__AVR_ATmega2561__)
|
|
|
|
TIMSK3
|
|
|
|
#else
|
|
|
|
ETIMSK
|
|
|
|
#endif
|
2016-02-27 12:51:44 +00:00
|
|
|
, OCIE3A); // disable the timer3 output compare A interrupt
|
2015-01-24 06:26:52 +00:00
|
|
|
timerDetach(TIMER3OUTCOMPAREA_INT);
|
|
|
|
}
|
2017-05-09 17:35:43 +00:00
|
|
|
#else // !WIRING
|
2015-01-24 06:26:52 +00:00
|
|
|
// For arduino - in future: call here to a currently undefined function to reset the timer
|
2016-07-01 22:53:38 +00:00
|
|
|
UNUSED(timer);
|
2015-01-24 06:26:52 +00:00
|
|
|
#endif
|
2013-05-18 21:12:28 +00:00
|
|
|
}
|
|
|
|
|
2017-06-17 23:36:10 +00:00
|
|
|
#endif // HAS_SERVOS
|
2015-07-12 21:02:47 +00:00
|
|
|
|
2017-06-17 23:36:10 +00:00
|
|
|
#endif // ARDUINO_ARCH_AVR
|