My Marlin configs for Fabrikator Mini and CTC i3 Pro B
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

HAL_timers_Due.h 4.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. /**
  2. * Marlin 3D Printer Firmware
  3. *
  4. * Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
  5. * Copyright (c) 2016 Bob Cousins bobcousins42@googlemail.com
  6. *
  7. * This program is free software: you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation, either version 3 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  19. *
  20. */
  21. /**
  22. * HAL for Arduino Due and compatible (SAM3X8E)
  23. *
  24. * For ARDUINO_ARCH_SAM
  25. */
  26. #ifndef _HAL_TIMERS_DUE_H
  27. #define _HAL_TIMERS_DUE_H
  28. // --------------------------------------------------------------------------
  29. // Includes
  30. // --------------------------------------------------------------------------
  31. #include <stdint.h>
  32. // --------------------------------------------------------------------------
  33. // Defines
  34. // --------------------------------------------------------------------------
  35. #define FORCE_INLINE __attribute__((always_inline)) inline
  36. typedef uint32_t hal_timer_t;
  37. #define HAL_TIMER_TYPE_MAX 0xFFFFFFFF
  38. #define STEP_TIMER_NUM 3 // index of timer to use for stepper
  39. #define TEMP_TIMER_NUM 4 // index of timer to use for temperature
  40. #define HAL_TIMER_RATE ((F_CPU) / 2) // frequency of timers peripherals
  41. #define STEPPER_TIMER_PRESCALE 1.0 // prescaler for setting stepper frequency
  42. #define HAL_STEPPER_TIMER_RATE HAL_TIMER_RATE // frequency of stepper timer (HAL_TIMER_RATE / STEPPER_TIMER_PRESCALE)
  43. #define HAL_TICKS_PER_US ((HAL_STEPPER_TIMER_RATE) / 1000000) // stepper timer ticks per us
  44. #define TEMP_TIMER_FREQUENCY 1000 // temperature interrupt frequency
  45. #define ENABLE_STEPPER_DRIVER_INTERRUPT() HAL_timer_enable_interrupt(STEP_TIMER_NUM)
  46. #define DISABLE_STEPPER_DRIVER_INTERRUPT() HAL_timer_disable_interrupt(STEP_TIMER_NUM)
  47. #define ENABLE_TEMPERATURE_INTERRUPT() HAL_timer_enable_interrupt(TEMP_TIMER_NUM)
  48. #define DISABLE_TEMPERATURE_INTERRUPT() HAL_timer_disable_interrupt(TEMP_TIMER_NUM)
  49. #define HAL_ENABLE_ISRs() do { if (thermalManager.in_temp_isr) DISABLE_TEMPERATURE_INTERRUPT(); else ENABLE_TEMPERATURE_INTERRUPT(); ENABLE_STEPPER_DRIVER_INTERRUPT(); } while(0)
  50. #define HAL_STEP_TIMER_ISR void TC3_Handler()
  51. #define HAL_TEMP_TIMER_ISR void TC4_Handler()
  52. #define PULSE_TIMER_NUM STEP_TIMER_NUM
  53. #define PULSE_TIMER_PRESCALE STEPPER_TIMER_PRESCALE
  54. // --------------------------------------------------------------------------
  55. // Types
  56. // --------------------------------------------------------------------------
  57. typedef struct {
  58. Tc *pTimerRegs;
  59. uint16_t channel;
  60. IRQn_Type IRQ_Id;
  61. uint8_t priority;
  62. } tTimerConfig;
  63. // --------------------------------------------------------------------------
  64. // Public Variables
  65. // --------------------------------------------------------------------------
  66. extern const tTimerConfig TimerConfig[];
  67. // --------------------------------------------------------------------------
  68. // Public functions
  69. // --------------------------------------------------------------------------
  70. void HAL_timer_start(const uint8_t timer_num, const uint32_t frequency);
  71. FORCE_INLINE static void HAL_timer_set_count(const uint8_t timer_num, const hal_timer_t count) {
  72. const tTimerConfig *pConfig = &TimerConfig[timer_num];
  73. pConfig->pTimerRegs->TC_CHANNEL[pConfig->channel].TC_RC = count;
  74. }
  75. FORCE_INLINE static hal_timer_t HAL_timer_get_count(const uint8_t timer_num) {
  76. const tTimerConfig *pConfig = &TimerConfig[timer_num];
  77. return pConfig->pTimerRegs->TC_CHANNEL[pConfig->channel].TC_RC;
  78. }
  79. FORCE_INLINE static void HAL_timer_set_current_count(const uint8_t timer_num, const hal_timer_t count) {
  80. const tTimerConfig *pConfig = &TimerConfig[timer_num];
  81. pConfig->pTimerRegs->TC_CHANNEL[pConfig->channel].TC_CV = count;
  82. }
  83. FORCE_INLINE static hal_timer_t HAL_timer_get_current_count(const uint8_t timer_num) {
  84. const tTimerConfig *pConfig = &TimerConfig[timer_num];
  85. return pConfig->pTimerRegs->TC_CHANNEL[pConfig->channel].TC_CV;
  86. }
  87. void HAL_timer_enable_interrupt(const uint8_t timer_num);
  88. void HAL_timer_disable_interrupt(const uint8_t timer_num);
  89. //void HAL_timer_isr_prologue(const uint8_t timer_num);
  90. FORCE_INLINE static void HAL_timer_isr_prologue(const uint8_t timer_num) {
  91. const tTimerConfig *pConfig = &TimerConfig[timer_num];
  92. // Reading the status register clears the interrupt flag
  93. pConfig->pTimerRegs->TC_CHANNEL[pConfig->channel].TC_SR;
  94. }
  95. #endif // _HAL_TIMERS_DUE_H