2017-07-19 01:29:06 +02:00
|
|
|
/**
|
|
|
|
* Marlin 3D Printer Firmware
|
|
|
|
*
|
2020-02-03 15:00:57 +01:00
|
|
|
* Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
2017-07-19 01:29:06 +02:00
|
|
|
* Copyright (c) 2016 Bob Cousins bobcousins42@googlemail.com
|
|
|
|
*
|
|
|
|
* 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-11-04 09:25:55 +01:00
|
|
|
#pragma once
|
2017-07-19 01:29:06 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* HAL for Arduino Due and compatible (SAM3X8E)
|
|
|
|
*
|
|
|
|
* For ARDUINO_ARCH_SAM
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
2019-07-10 05:30:06 +02:00
|
|
|
// ------------------------
|
2017-07-19 01:29:06 +02:00
|
|
|
// Defines
|
2019-07-10 05:30:06 +02:00
|
|
|
// ------------------------
|
2017-07-19 01:29:06 +02:00
|
|
|
|
|
|
|
#define FORCE_INLINE __attribute__((always_inline)) inline
|
|
|
|
|
2017-11-06 02:31:07 +01:00
|
|
|
typedef uint32_t hal_timer_t;
|
2017-07-19 01:29:06 +02:00
|
|
|
#define HAL_TIMER_TYPE_MAX 0xFFFFFFFF
|
|
|
|
|
2018-06-12 06:04:26 +02:00
|
|
|
#define HAL_TIMER_RATE ((F_CPU) / 2) // frequency of timers peripherals
|
|
|
|
|
2019-10-03 10:29:15 +02:00
|
|
|
#ifndef STEP_TIMER_NUM
|
2020-06-02 01:33:30 +02:00
|
|
|
#define STEP_TIMER_NUM 2 // Timer Index for Stepper
|
|
|
|
#endif
|
|
|
|
#ifndef PULSE_TIMER_NUM
|
|
|
|
#define PULSE_TIMER_NUM STEP_TIMER_NUM
|
|
|
|
#endif
|
|
|
|
#ifndef TEMP_TIMER_NUM
|
|
|
|
#define TEMP_TIMER_NUM 4 // Timer Index for Temperature
|
|
|
|
#endif
|
|
|
|
#ifndef TONE_TIMER_NUM
|
|
|
|
#define TONE_TIMER_NUM 6 // index of timer to use for beeper tones
|
2019-10-03 10:29:15 +02:00
|
|
|
#endif
|
2017-07-19 01:29:06 +02:00
|
|
|
|
2018-06-12 06:04:26 +02:00
|
|
|
#define TEMP_TIMER_FREQUENCY 1000 // temperature interrupt frequency
|
2018-05-13 23:48:02 +02:00
|
|
|
|
2018-06-12 23:32:22 +02:00
|
|
|
#define STEPPER_TIMER_RATE HAL_TIMER_RATE // frequency of stepper timer (HAL_TIMER_RATE / STEPPER_TIMER_PRESCALE)
|
2018-06-12 06:04:26 +02:00
|
|
|
#define STEPPER_TIMER_TICKS_PER_US ((STEPPER_TIMER_RATE) / 1000000) // stepper timer ticks per µs
|
|
|
|
#define STEPPER_TIMER_PRESCALE (CYCLES_PER_MICROSECOND / STEPPER_TIMER_TICKS_PER_US)
|
2018-05-13 23:48:02 +02:00
|
|
|
|
2018-06-12 06:04:26 +02:00
|
|
|
#define PULSE_TIMER_RATE STEPPER_TIMER_RATE // frequency of pulse timer
|
|
|
|
#define PULSE_TIMER_PRESCALE STEPPER_TIMER_PRESCALE
|
|
|
|
#define PULSE_TIMER_TICKS_PER_US STEPPER_TIMER_TICKS_PER_US
|
2017-07-19 01:29:06 +02:00
|
|
|
|
2017-08-24 19:18:54 +02:00
|
|
|
#define ENABLE_STEPPER_DRIVER_INTERRUPT() HAL_timer_enable_interrupt(STEP_TIMER_NUM)
|
|
|
|
#define DISABLE_STEPPER_DRIVER_INTERRUPT() HAL_timer_disable_interrupt(STEP_TIMER_NUM)
|
2018-01-12 03:59:16 +01:00
|
|
|
#define STEPPER_ISR_ENABLED() HAL_timer_interrupt_enabled(STEP_TIMER_NUM)
|
2017-07-19 01:29:06 +02:00
|
|
|
|
2017-08-24 19:18:54 +02:00
|
|
|
#define ENABLE_TEMPERATURE_INTERRUPT() HAL_timer_enable_interrupt(TEMP_TIMER_NUM)
|
|
|
|
#define DISABLE_TEMPERATURE_INTERRUPT() HAL_timer_disable_interrupt(TEMP_TIMER_NUM)
|
|
|
|
|
2019-10-03 22:37:04 +02:00
|
|
|
#ifndef HAL_STEP_TIMER_ISR
|
|
|
|
#define HAL_STEP_TIMER_ISR() void TC2_Handler()
|
2019-10-03 10:29:15 +02:00
|
|
|
#endif
|
2020-06-02 01:33:30 +02:00
|
|
|
#ifndef HAL_TEMP_TIMER_ISR
|
|
|
|
#define HAL_TEMP_TIMER_ISR() void TC4_Handler()
|
|
|
|
#endif
|
|
|
|
#ifndef HAL_TONE_TIMER_ISR
|
|
|
|
#define HAL_TONE_TIMER_ISR() void TC6_Handler()
|
|
|
|
#endif
|
2017-07-19 01:29:06 +02:00
|
|
|
|
2019-07-10 05:30:06 +02:00
|
|
|
// ------------------------
|
2017-07-19 01:29:06 +02:00
|
|
|
// Types
|
2019-07-10 05:30:06 +02:00
|
|
|
// ------------------------
|
2017-07-19 01:29:06 +02:00
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
Tc *pTimerRegs;
|
|
|
|
uint16_t channel;
|
|
|
|
IRQn_Type IRQ_Id;
|
|
|
|
uint8_t priority;
|
|
|
|
} tTimerConfig;
|
|
|
|
|
2019-07-10 05:30:06 +02:00
|
|
|
// ------------------------
|
2017-07-19 01:29:06 +02:00
|
|
|
// Public Variables
|
2019-07-10 05:30:06 +02:00
|
|
|
// ------------------------
|
2017-07-19 01:29:06 +02:00
|
|
|
|
|
|
|
extern const tTimerConfig TimerConfig[];
|
|
|
|
|
2019-07-10 05:30:06 +02:00
|
|
|
// ------------------------
|
2017-07-19 01:29:06 +02:00
|
|
|
// Public functions
|
2019-07-10 05:30:06 +02:00
|
|
|
// ------------------------
|
2017-07-19 01:29:06 +02:00
|
|
|
|
2017-08-24 19:18:54 +02:00
|
|
|
void HAL_timer_start(const uint8_t timer_num, const uint32_t frequency);
|
2017-07-19 01:29:06 +02:00
|
|
|
|
2018-02-11 03:42:00 +01:00
|
|
|
FORCE_INLINE static void HAL_timer_set_compare(const uint8_t timer_num, const hal_timer_t compare) {
|
2018-01-12 03:59:16 +01:00
|
|
|
const tTimerConfig * const pConfig = &TimerConfig[timer_num];
|
2018-02-11 03:42:00 +01:00
|
|
|
pConfig->pTimerRegs->TC_CHANNEL[pConfig->channel].TC_RC = compare;
|
2017-07-19 01:29:06 +02:00
|
|
|
}
|
|
|
|
|
2018-02-11 03:42:00 +01:00
|
|
|
FORCE_INLINE static hal_timer_t HAL_timer_get_compare(const uint8_t timer_num) {
|
2018-01-12 03:59:16 +01:00
|
|
|
const tTimerConfig * const pConfig = &TimerConfig[timer_num];
|
2017-07-19 01:29:06 +02:00
|
|
|
return pConfig->pTimerRegs->TC_CHANNEL[pConfig->channel].TC_RC;
|
|
|
|
}
|
|
|
|
|
2018-02-11 03:42:00 +01:00
|
|
|
FORCE_INLINE static hal_timer_t HAL_timer_get_count(const uint8_t timer_num) {
|
2018-01-12 03:59:16 +01:00
|
|
|
const tTimerConfig * const pConfig = &TimerConfig[timer_num];
|
2017-07-19 01:29:06 +02:00
|
|
|
return pConfig->pTimerRegs->TC_CHANNEL[pConfig->channel].TC_CV;
|
|
|
|
}
|
|
|
|
|
2017-08-24 19:18:54 +02:00
|
|
|
void HAL_timer_enable_interrupt(const uint8_t timer_num);
|
|
|
|
void HAL_timer_disable_interrupt(const uint8_t timer_num);
|
2018-01-12 03:59:16 +01:00
|
|
|
bool HAL_timer_interrupt_enabled(const uint8_t timer_num);
|
2017-07-19 01:29:06 +02:00
|
|
|
|
2017-12-08 07:37:09 +01:00
|
|
|
FORCE_INLINE static void HAL_timer_isr_prologue(const uint8_t timer_num) {
|
2018-01-12 03:59:16 +01:00
|
|
|
const tTimerConfig * const pConfig = &TimerConfig[timer_num];
|
2017-07-19 01:29:06 +02:00
|
|
|
// Reading the status register clears the interrupt flag
|
|
|
|
pConfig->pTimerRegs->TC_CHANNEL[pConfig->channel].TC_SR;
|
|
|
|
}
|
|
|
|
|
2018-04-24 05:05:07 +02:00
|
|
|
#define HAL_timer_isr_epilogue(TIMER_NUM)
|