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 5.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. /**
  2. * Marlin 3D Printer Firmware
  3. *
  4. * Copyright (c) 2019 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
  5. * Copyright (c) 2016 Bob Cousins bobcousins42@googlemail.com
  6. * Copyright (c) 2017 Victor Perez
  7. *
  8. * This program is free software: you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation, either version 3 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  20. *
  21. */
  22. #pragma once
  23. #include <stdint.h>
  24. #include "../../inc/MarlinConfig.h"
  25. // ------------------------
  26. // Defines
  27. // ------------------------
  28. #define FORCE_INLINE __attribute__((always_inline)) inline
  29. #define hal_timer_t uint32_t
  30. #define HAL_TIMER_TYPE_MAX 0xFFFFFFFF // Timers can be 16 or 32 bit
  31. #ifdef STM32F0xx
  32. #define HAL_TIMER_RATE (F_CPU) // frequency of timer peripherals
  33. #ifndef STEP_TIMER
  34. #define STEP_TIMER 16
  35. #endif
  36. #ifndef TEMP_TIMER
  37. #define TEMP_TIMER 17
  38. #endif
  39. #elif defined(STM32F1xx)
  40. #define HAL_TIMER_RATE (F_CPU) // frequency of timer peripherals
  41. #ifndef STEP_TIMER
  42. #define STEP_TIMER 4
  43. #endif
  44. #ifndef TEMP_TIMER
  45. #define TEMP_TIMER 2
  46. #endif
  47. #elif defined(STM32F401xC) || defined(STM32F401xE)
  48. #define HAL_TIMER_RATE (F_CPU / 2) // frequency of timer peripherals
  49. #ifndef STEP_TIMER
  50. #define STEP_TIMER 9
  51. #endif
  52. #ifndef TEMP_TIMER
  53. #define TEMP_TIMER 10
  54. #endif
  55. #elif defined(STM32F4xx)
  56. #define HAL_TIMER_RATE (F_CPU / 2) // frequency of timer peripherals
  57. #ifndef STEP_TIMER
  58. #define STEP_TIMER 6 // STM32F401 has no TIM6, TIM7, or TIM8
  59. #endif
  60. #ifndef TEMP_TIMER
  61. #define TEMP_TIMER 14 // TIM7 is consumed by Software Serial if used.
  62. #endif
  63. #elif defined(STM32F7xx)
  64. #define HAL_TIMER_RATE (F_CPU / 2) // frequency of timer peripherals
  65. #ifndef STEP_TIMER
  66. #define STEP_TIMER 6 // the RIGHT timer!
  67. #endif
  68. #ifndef TEMP_TIMER
  69. #define TEMP_TIMER 14
  70. #endif
  71. #endif
  72. #ifndef SWSERIAL_TIMER_IRQ_PRIO
  73. #define SWSERIAL_TIMER_IRQ_PRIO 1
  74. #endif
  75. #ifndef STEP_TIMER_IRQ_PRIO
  76. #define STEP_TIMER_IRQ_PRIO 2
  77. #endif
  78. #ifndef TEMP_TIMER_IRQ_PRIO
  79. #define TEMP_TIMER_IRQ_PRIO 14 // 14 = after hardware ISRs
  80. #endif
  81. #define STEP_TIMER_NUM 0 // index of timer to use for stepper
  82. #define TEMP_TIMER_NUM 1 // index of timer to use for temperature
  83. #define PULSE_TIMER_NUM STEP_TIMER_NUM
  84. #define TEMP_TIMER_FREQUENCY 1000 // Temperature::isr() is expected to be called at around 1kHz
  85. // TODO: get rid of manual rate/prescale/ticks/cycles taken for procedures in stepper.cpp
  86. #define STEPPER_TIMER_RATE 2000000 // 2 Mhz
  87. #define STEPPER_TIMER_PRESCALE ((HAL_TIMER_RATE)/(STEPPER_TIMER_RATE))
  88. #define STEPPER_TIMER_TICKS_PER_US ((STEPPER_TIMER_RATE) / 1000000) // stepper timer ticks per µs
  89. #define PULSE_TIMER_RATE STEPPER_TIMER_RATE
  90. #define PULSE_TIMER_PRESCALE STEPPER_TIMER_PRESCALE
  91. #define PULSE_TIMER_TICKS_PER_US STEPPER_TIMER_TICKS_PER_US
  92. #define __TIMER_IRQ_NAME(X) TIM##X##_IRQn
  93. #define _TIMER_IRQ_NAME(X) __TIMER_IRQ_NAME(X)
  94. #define STEP_TIMER_IRQ_NAME _TIMER_IRQ_NAME(STEP_TIMER)
  95. #define TEMP_TIMER_IRQ_NAME _TIMER_IRQ_NAME(TEMP_TIMER)
  96. #define ENABLE_STEPPER_DRIVER_INTERRUPT() HAL_timer_enable_interrupt(STEP_TIMER_NUM)
  97. #define DISABLE_STEPPER_DRIVER_INTERRUPT() HAL_timer_disable_interrupt(STEP_TIMER_NUM)
  98. #define STEPPER_ISR_ENABLED() HAL_timer_interrupt_enabled(STEP_TIMER_NUM)
  99. #define ENABLE_TEMPERATURE_INTERRUPT() HAL_timer_enable_interrupt(TEMP_TIMER_NUM)
  100. #define DISABLE_TEMPERATURE_INTERRUPT() HAL_timer_disable_interrupt(TEMP_TIMER_NUM)
  101. extern void Step_Handler(HardwareTimer *htim);
  102. extern void Temp_Handler(HardwareTimer *htim);
  103. #define HAL_STEP_TIMER_ISR() void Step_Handler(HardwareTimer *htim)
  104. #define HAL_TEMP_TIMER_ISR() void Temp_Handler(HardwareTimer *htim)
  105. // ------------------------
  106. // Public Variables
  107. // ------------------------
  108. extern HardwareTimer *timer_instance[];
  109. // ------------------------
  110. // Public functions
  111. // ------------------------
  112. void HAL_timer_start(const uint8_t timer_num, const uint32_t frequency);
  113. void HAL_timer_enable_interrupt(const uint8_t timer_num);
  114. void HAL_timer_disable_interrupt(const uint8_t timer_num);
  115. bool HAL_timer_interrupt_enabled(const uint8_t timer_num);
  116. //TIM_TypeDef* HAL_timer_device(const uint8_t timer_num); no need to be public for now. not public = not used externally
  117. // FORCE_INLINE because these are used in performance-critical situations
  118. FORCE_INLINE bool HAL_timer_initialized(const uint8_t timer_num) {
  119. return timer_instance[timer_num] != NULL;
  120. }
  121. FORCE_INLINE static hal_timer_t HAL_timer_get_count(const uint8_t timer_num) {
  122. return HAL_timer_initialized(timer_num) ? timer_instance[timer_num]->getCount() : 0;
  123. }
  124. // NOTE: Method name may be misleading.
  125. // STM32 has an Auto-Reload Register (ARR) as opposed to a "compare" register
  126. FORCE_INLINE static void HAL_timer_set_compare(const uint8_t timer_num, const hal_timer_t overflow) {
  127. if (HAL_timer_initialized(timer_num)) {
  128. timer_instance[timer_num]->setOverflow(overflow + 1, TICK_FORMAT); // Value decremented by setOverflow()
  129. // wiki: "force all registers (Autoreload, prescaler, compare) to be taken into account"
  130. // So, if the new overflow value is less than the count it will trigger a rollover interrupt.
  131. if (overflow < timer_instance[timer_num]->getCount()) // Added 'if' here because reports say it won't boot without it
  132. timer_instance[timer_num]->refresh();
  133. }
  134. }
  135. #define HAL_timer_isr_prologue(TIMER_NUM)
  136. #define HAL_timer_isr_epilogue(TIMER_NUM)