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.

timers.h 4.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. /**
  2. * Marlin 3D Printer Firmware
  3. *
  4. * Copyright (c) 2020 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 <https://www.gnu.org/licenses/>.
  19. *
  20. */
  21. #pragma once
  22. /**
  23. * HAL Timers for Arduino Due and compatible (SAM3X8E)
  24. */
  25. #include <stdint.h>
  26. // ------------------------
  27. // Defines
  28. // ------------------------
  29. #define FORCE_INLINE __attribute__((always_inline)) inline
  30. typedef uint32_t hal_timer_t;
  31. #define HAL_TIMER_TYPE_MAX 0xFFFFFFFF
  32. #define HAL_TIMER_RATE ((F_CPU) / 2) // frequency of timers peripherals
  33. #ifndef STEP_TIMER_NUM
  34. #define STEP_TIMER_NUM 2 // Timer Index for Stepper
  35. #endif
  36. #ifndef PULSE_TIMER_NUM
  37. #define PULSE_TIMER_NUM STEP_TIMER_NUM
  38. #endif
  39. #ifndef TEMP_TIMER_NUM
  40. #define TEMP_TIMER_NUM 4 // Timer Index for Temperature
  41. #endif
  42. #ifndef TONE_TIMER_NUM
  43. #define TONE_TIMER_NUM 6 // index of timer to use for beeper tones
  44. #endif
  45. #define TEMP_TIMER_FREQUENCY 1000 // temperature interrupt frequency
  46. #define STEPPER_TIMER_RATE HAL_TIMER_RATE // frequency of stepper timer (HAL_TIMER_RATE / STEPPER_TIMER_PRESCALE)
  47. #define STEPPER_TIMER_TICKS_PER_US ((STEPPER_TIMER_RATE) / 1000000) // stepper timer ticks per µs
  48. #define STEPPER_TIMER_PRESCALE (CYCLES_PER_MICROSECOND / STEPPER_TIMER_TICKS_PER_US)
  49. #define PULSE_TIMER_RATE STEPPER_TIMER_RATE // frequency of pulse timer
  50. #define PULSE_TIMER_PRESCALE STEPPER_TIMER_PRESCALE
  51. #define PULSE_TIMER_TICKS_PER_US STEPPER_TIMER_TICKS_PER_US
  52. #define ENABLE_STEPPER_DRIVER_INTERRUPT() HAL_timer_enable_interrupt(STEP_TIMER_NUM)
  53. #define DISABLE_STEPPER_DRIVER_INTERRUPT() HAL_timer_disable_interrupt(STEP_TIMER_NUM)
  54. #define STEPPER_ISR_ENABLED() HAL_timer_interrupt_enabled(STEP_TIMER_NUM)
  55. #define ENABLE_TEMPERATURE_INTERRUPT() HAL_timer_enable_interrupt(TEMP_TIMER_NUM)
  56. #define DISABLE_TEMPERATURE_INTERRUPT() HAL_timer_disable_interrupt(TEMP_TIMER_NUM)
  57. #ifndef HAL_STEP_TIMER_ISR
  58. #define HAL_STEP_TIMER_ISR() void TC2_Handler()
  59. #endif
  60. #ifndef HAL_TEMP_TIMER_ISR
  61. #define HAL_TEMP_TIMER_ISR() void TC4_Handler()
  62. #endif
  63. #ifndef HAL_TONE_TIMER_ISR
  64. #define HAL_TONE_TIMER_ISR() void TC6_Handler()
  65. #endif
  66. // ------------------------
  67. // Types
  68. // ------------------------
  69. typedef struct {
  70. Tc *pTimerRegs;
  71. uint16_t channel;
  72. IRQn_Type IRQ_Id;
  73. uint8_t priority;
  74. } tTimerConfig;
  75. // ------------------------
  76. // Public Variables
  77. // ------------------------
  78. extern const tTimerConfig TimerConfig[];
  79. // ------------------------
  80. // Public functions
  81. // ------------------------
  82. void HAL_timer_start(const uint8_t timer_num, const uint32_t frequency);
  83. FORCE_INLINE static void HAL_timer_set_compare(const uint8_t timer_num, const hal_timer_t compare) {
  84. const tTimerConfig * const pConfig = &TimerConfig[timer_num];
  85. pConfig->pTimerRegs->TC_CHANNEL[pConfig->channel].TC_RC = compare;
  86. }
  87. FORCE_INLINE static hal_timer_t HAL_timer_get_compare(const uint8_t timer_num) {
  88. const tTimerConfig * const pConfig = &TimerConfig[timer_num];
  89. return pConfig->pTimerRegs->TC_CHANNEL[pConfig->channel].TC_RC;
  90. }
  91. FORCE_INLINE static hal_timer_t HAL_timer_get_count(const uint8_t timer_num) {
  92. const tTimerConfig * const pConfig = &TimerConfig[timer_num];
  93. return pConfig->pTimerRegs->TC_CHANNEL[pConfig->channel].TC_CV;
  94. }
  95. void HAL_timer_enable_interrupt(const uint8_t timer_num);
  96. void HAL_timer_disable_interrupt(const uint8_t timer_num);
  97. bool HAL_timer_interrupt_enabled(const uint8_t timer_num);
  98. FORCE_INLINE static void HAL_timer_isr_prologue(const uint8_t timer_num) {
  99. const tTimerConfig * const pConfig = &TimerConfig[timer_num];
  100. // Reading the status register clears the interrupt flag
  101. pConfig->pTimerRegs->TC_CHANNEL[pConfig->channel].TC_SR;
  102. }
  103. #define HAL_timer_isr_epilogue(TIMER_NUM)