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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  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. // STM32F401 only has timers 1-5 & 9-11 with timers 4 & 5 usually assigned to TIMER_SERVO and TIMER_TONE
  50. #ifndef STEP_TIMER
  51. #define STEP_TIMER 9
  52. #endif
  53. #ifndef TEMP_TIMER
  54. #define TEMP_TIMER 10
  55. #endif
  56. #elif defined(STM32F4xx)
  57. #define HAL_TIMER_RATE (F_CPU / 2) // frequency of timer peripherals
  58. #ifndef STEP_TIMER
  59. #define STEP_TIMER 6
  60. #endif
  61. #ifndef TEMP_TIMER
  62. #define TEMP_TIMER 14
  63. #endif
  64. #elif defined(STM32F7xx)
  65. #define HAL_TIMER_RATE (F_CPU/2) // frequency of timer peripherals
  66. #ifndef STEP_TIMER
  67. #define STEP_TIMER 6
  68. #endif
  69. #ifndef TEMP_TIMER
  70. #define TEMP_TIMER 14
  71. #endif
  72. #endif
  73. #ifndef SWSERIAL_TIMER_IRQ_PRIO
  74. #define SWSERIAL_TIMER_IRQ_PRIO 1
  75. #endif
  76. #ifndef STEP_TIMER_IRQ_PRIO
  77. #define STEP_TIMER_IRQ_PRIO 2
  78. #endif
  79. #ifndef TEMP_TIMER_IRQ_PRIO
  80. #define TEMP_TIMER_IRQ_PRIO 14 // 14 = after hardware ISRs
  81. #endif
  82. #define STEP_TIMER_NUM 0 // index of timer to use for stepper
  83. #define TEMP_TIMER_NUM 1 // index of timer to use for temperature
  84. #define PULSE_TIMER_NUM STEP_TIMER_NUM
  85. #define TEMP_TIMER_FREQUENCY 1000 // Temperature::isr() is expected to be called at around 1kHz
  86. // TODO: get rid of manual rate/prescale/ticks/cycles taken for procedures in stepper.cpp
  87. #define STEPPER_TIMER_RATE 2000000 // 2 Mhz
  88. #define STEPPER_TIMER_PRESCALE ((HAL_TIMER_RATE)/(STEPPER_TIMER_RATE))
  89. #define STEPPER_TIMER_TICKS_PER_US ((STEPPER_TIMER_RATE) / 1000000) // stepper timer ticks per µs
  90. #define PULSE_TIMER_RATE STEPPER_TIMER_RATE
  91. #define PULSE_TIMER_PRESCALE STEPPER_TIMER_PRESCALE
  92. #define PULSE_TIMER_TICKS_PER_US STEPPER_TIMER_TICKS_PER_US
  93. #define __TIMER_IRQ_NAME(X) TIM##X##_IRQn
  94. #define _TIMER_IRQ_NAME(X) __TIMER_IRQ_NAME(X)
  95. #define STEP_TIMER_IRQ_NAME _TIMER_IRQ_NAME(STEP_TIMER)
  96. #define TEMP_TIMER_IRQ_NAME _TIMER_IRQ_NAME(TEMP_TIMER)
  97. #define ENABLE_STEPPER_DRIVER_INTERRUPT() HAL_timer_enable_interrupt(STEP_TIMER_NUM)
  98. #define DISABLE_STEPPER_DRIVER_INTERRUPT() HAL_timer_disable_interrupt(STEP_TIMER_NUM)
  99. #define STEPPER_ISR_ENABLED() HAL_timer_interrupt_enabled(STEP_TIMER_NUM)
  100. #define ENABLE_TEMPERATURE_INTERRUPT() HAL_timer_enable_interrupt(TEMP_TIMER_NUM)
  101. #define DISABLE_TEMPERATURE_INTERRUPT() HAL_timer_disable_interrupt(TEMP_TIMER_NUM)
  102. extern void Step_Handler(HardwareTimer *htim);
  103. extern void Temp_Handler(HardwareTimer *htim);
  104. #define HAL_STEP_TIMER_ISR() void Step_Handler(HardwareTimer *htim)
  105. #define HAL_TEMP_TIMER_ISR() void Temp_Handler(HardwareTimer *htim)
  106. // ------------------------
  107. // Public Variables
  108. // ------------------------
  109. extern HardwareTimer *timer_instance[];
  110. // ------------------------
  111. // Public functions
  112. // ------------------------
  113. void HAL_timer_start(const uint8_t timer_num, const uint32_t frequency);
  114. void HAL_timer_enable_interrupt(const uint8_t timer_num);
  115. void HAL_timer_disable_interrupt(const uint8_t timer_num);
  116. bool HAL_timer_interrupt_enabled(const uint8_t timer_num);
  117. //TIM_TypeDef* HAL_timer_device(const uint8_t timer_num); no need to be public for now. not public = not used externally
  118. // FORCE_INLINE because these are used in performance-critical situations
  119. FORCE_INLINE bool HAL_timer_initialized(const uint8_t timer_num) {
  120. return timer_instance[timer_num] != NULL;
  121. }
  122. FORCE_INLINE static hal_timer_t HAL_timer_get_count(const uint8_t timer_num) {
  123. return HAL_timer_initialized(timer_num) ? timer_instance[timer_num]->getCount() : 0;
  124. }
  125. // NOTE: Method name may be misleading.
  126. // STM32 has an Auto-Reload Register (ARR) as opposed to a "compare" register
  127. FORCE_INLINE static void HAL_timer_set_compare(const uint8_t timer_num, const hal_timer_t overflow) {
  128. if (HAL_timer_initialized(timer_num)) {
  129. timer_instance[timer_num]->setOverflow(overflow + 1, TICK_FORMAT); // Value decremented by setOverflow()
  130. // wiki: "force all registers (Autoreload, prescaler, compare) to be taken into account"
  131. // So, if the new overflow value is less than the count it will trigger a rollover interrupt.
  132. if (overflow < timer_instance[timer_num]->getCount()) // Added 'if' here because reports say it won't boot without it
  133. timer_instance[timer_num]->refresh();
  134. }
  135. }
  136. #define HAL_timer_isr_prologue(TIMER_NUM)
  137. #define HAL_timer_isr_epilogue(TIMER_NUM)