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_STM32.h 4.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  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(STM32F4xx) || defined(STM32F7xx)
  48. #define HAL_TIMER_RATE (F_CPU/2) // frequency of timer peripherals
  49. #ifndef STEP_TIMER
  50. #define STEP_TIMER 5
  51. #endif
  52. #ifndef TEMP_TIMER
  53. #define TEMP_TIMER 7
  54. #endif
  55. #endif
  56. #ifndef STEP_TIMER_IRQ_PRIO
  57. #define STEP_TIMER_IRQ_PRIO 1
  58. #endif
  59. #ifndef TEMP_TIMER_IRQ_PRIO
  60. #define TEMP_TIMER_IRQ_PRIO 2
  61. #endif
  62. #define STEP_TIMER_NUM 0 // index of timer to use for stepper
  63. #define TEMP_TIMER_NUM 1 // index of timer to use for temperature
  64. #define PULSE_TIMER_NUM STEP_TIMER_NUM
  65. #define TEMP_TIMER_RATE 72000 // 72 Khz
  66. #define TEMP_TIMER_PRESCALE ((HAL_TIMER_RATE)/(TEMP_TIMER_RATE))
  67. #define TEMP_TIMER_FREQUENCY 1000
  68. #define STEPPER_TIMER_RATE 2000000 // 2 Mhz
  69. #define STEPPER_TIMER_PRESCALE ((HAL_TIMER_RATE)/(STEPPER_TIMER_RATE))
  70. #define STEPPER_TIMER_TICKS_PER_US ((STEPPER_TIMER_RATE) / 1000000) // stepper timer ticks per µs
  71. #define PULSE_TIMER_RATE STEPPER_TIMER_RATE
  72. #define PULSE_TIMER_PRESCALE STEPPER_TIMER_PRESCALE
  73. #define PULSE_TIMER_TICKS_PER_US STEPPER_TIMER_TICKS_PER_US
  74. #define __TIMER_DEV(X) TIM##X
  75. #define _TIMER_DEV(X) __TIMER_DEV(X)
  76. #define STEP_TIMER_DEV _TIMER_DEV(STEP_TIMER)
  77. #define TEMP_TIMER_DEV _TIMER_DEV(TEMP_TIMER)
  78. #define __TIMER_CALLBACK(X) TIM##X##_IRQHandler
  79. #define _TIMER_CALLBACK(X) __TIMER_CALLBACK(X)
  80. #define STEP_TIMER_CALLBACK _TIMER_CALLBACK(STEP_TIMER)
  81. #define TEMP_TIMER_CALLBACK _TIMER_CALLBACK(TEMP_TIMER)
  82. #define __TIMER_IRQ_NAME(X) TIM##X##_IRQn
  83. #define _TIMER_IRQ_NAME(X) __TIMER_IRQ_NAME(X)
  84. #define STEP_TIMER_IRQ_NAME _TIMER_IRQ_NAME(STEP_TIMER)
  85. #define TEMP_TIMER_IRQ_NAME _TIMER_IRQ_NAME(TEMP_TIMER)
  86. #define ENABLE_STEPPER_DRIVER_INTERRUPT() HAL_timer_enable_interrupt(STEP_TIMER_NUM)
  87. #define DISABLE_STEPPER_DRIVER_INTERRUPT() HAL_timer_disable_interrupt(STEP_TIMER_NUM)
  88. #define STEPPER_ISR_ENABLED() HAL_timer_interrupt_enabled(STEP_TIMER_NUM)
  89. #define ENABLE_TEMPERATURE_INTERRUPT() HAL_timer_enable_interrupt(TEMP_TIMER_NUM)
  90. #define DISABLE_TEMPERATURE_INTERRUPT() HAL_timer_disable_interrupt(TEMP_TIMER_NUM)
  91. extern void Step_Handler(stimer_t *htim);
  92. extern void Temp_Handler(stimer_t *htim);
  93. #define HAL_STEP_TIMER_ISR() void Step_Handler(stimer_t *htim)
  94. #define HAL_TEMP_TIMER_ISR() void Temp_Handler(stimer_t *htim)
  95. // ------------------------
  96. // Types
  97. // ------------------------
  98. typedef stimer_t stm32_timer_t;
  99. // ------------------------
  100. // Public Variables
  101. // ------------------------
  102. extern stm32_timer_t TimerHandle[];
  103. // ------------------------
  104. // Public functions
  105. // ------------------------
  106. void HAL_timer_start(const uint8_t timer_num, const uint32_t frequency);
  107. void HAL_timer_enable_interrupt(const uint8_t timer_num);
  108. void HAL_timer_disable_interrupt(const uint8_t timer_num);
  109. bool HAL_timer_interrupt_enabled(const uint8_t timer_num);
  110. FORCE_INLINE static uint32_t HAL_timer_get_count(const uint8_t timer_num) {
  111. return __HAL_TIM_GET_COUNTER(&TimerHandle[timer_num].handle);
  112. }
  113. FORCE_INLINE static void HAL_timer_set_compare(const uint8_t timer_num, const uint32_t compare) {
  114. __HAL_TIM_SET_AUTORELOAD(&TimerHandle[timer_num].handle, compare);
  115. if (HAL_timer_get_count(timer_num) >= compare)
  116. TimerHandle[timer_num].handle.Instance->EGR |= TIM_EGR_UG; // Generate an immediate update interrupt
  117. }
  118. FORCE_INLINE static hal_timer_t HAL_timer_get_compare(const uint8_t timer_num) {
  119. return __HAL_TIM_GET_AUTORELOAD(&TimerHandle[timer_num].handle);
  120. }
  121. #define HAL_timer_isr_prologue(TIMER_NUM)
  122. #define HAL_timer_isr_epilogue(TIMER_NUM)