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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  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. // --------------------------------------------------------------------------
  24. // Includes
  25. // --------------------------------------------------------------------------
  26. #include <stdint.h>
  27. #include "../../inc/MarlinConfig.h"
  28. // --------------------------------------------------------------------------
  29. // Defines
  30. // --------------------------------------------------------------------------
  31. #define FORCE_INLINE __attribute__((always_inline)) inline
  32. #define hal_timer_t uint32_t
  33. #define HAL_TIMER_TYPE_MAX 0xFFFFFFFF // Timers can be 16 or 32 bit
  34. #ifdef STM32F0xx
  35. #define HAL_TIMER_RATE (F_CPU) // frequency of timer peripherals
  36. #ifndef STEP_TIMER
  37. #define STEP_TIMER 16
  38. #endif
  39. #ifndef TEMP_TIMER
  40. #define TEMP_TIMER 17
  41. #endif
  42. #elif defined(STM32F1xx)
  43. #define HAL_TIMER_RATE (F_CPU) // frequency of timer peripherals
  44. #ifndef STEP_TIMER
  45. #define STEP_TIMER 4
  46. #endif
  47. #ifndef TEMP_TIMER
  48. #define TEMP_TIMER 2
  49. #endif
  50. #elif defined(STM32F4xx) || defined(STM32F7xx)
  51. #define HAL_TIMER_RATE (F_CPU/2) // frequency of timer peripherals
  52. #ifndef STEP_TIMER
  53. #define STEP_TIMER 5
  54. #endif
  55. #ifndef TEMP_TIMER
  56. #define TEMP_TIMER 7
  57. #endif
  58. #endif
  59. #ifndef STEP_TIMER_IRQ_PRIO
  60. #define STEP_TIMER_IRQ_PRIO 1
  61. #endif
  62. #ifndef TEMP_TIMER_IRQ_PRIO
  63. #define TEMP_TIMER_IRQ_PRIO 2
  64. #endif
  65. #define STEP_TIMER_NUM 0 // index of timer to use for stepper
  66. #define TEMP_TIMER_NUM 1 // index of timer to use for temperature
  67. #define PULSE_TIMER_NUM STEP_TIMER_NUM
  68. #define TEMP_TIMER_RATE 72000 // 72 Khz
  69. #define TEMP_TIMER_PRESCALE ((HAL_TIMER_RATE)/(TEMP_TIMER_RATE))
  70. #define TEMP_TIMER_FREQUENCY 1000
  71. #define STEPPER_TIMER_RATE 2000000 // 2 Mhz
  72. #define STEPPER_TIMER_PRESCALE ((HAL_TIMER_RATE)/(STEPPER_TIMER_RATE))
  73. #define STEPPER_TIMER_TICKS_PER_US ((STEPPER_TIMER_RATE) / 1000000) // stepper timer ticks per µs
  74. #define PULSE_TIMER_RATE STEPPER_TIMER_RATE
  75. #define PULSE_TIMER_PRESCALE STEPPER_TIMER_PRESCALE
  76. #define PULSE_TIMER_TICKS_PER_US STEPPER_TIMER_TICKS_PER_US
  77. #define __TIMER_DEV(X) TIM##X
  78. #define _TIMER_DEV(X) __TIMER_DEV(X)
  79. #define STEP_TIMER_DEV _TIMER_DEV(STEP_TIMER)
  80. #define TEMP_TIMER_DEV _TIMER_DEV(TEMP_TIMER)
  81. #define __TIMER_CALLBACK(X) TIM##X##_IRQHandler
  82. #define _TIMER_CALLBACK(X) __TIMER_CALLBACK(X)
  83. #define STEP_TIMER_CALLBACK _TIMER_CALLBACK(STEP_TIMER)
  84. #define TEMP_TIMER_CALLBACK _TIMER_CALLBACK(TEMP_TIMER)
  85. #define __TIMER_IRQ_NAME(X) TIM##X##_IRQn
  86. #define _TIMER_IRQ_NAME(X) __TIMER_IRQ_NAME(X)
  87. #define STEP_TIMER_IRQ_NAME _TIMER_IRQ_NAME(STEP_TIMER)
  88. #define TEMP_TIMER_IRQ_NAME _TIMER_IRQ_NAME(TEMP_TIMER)
  89. #define ENABLE_STEPPER_DRIVER_INTERRUPT() HAL_timer_enable_interrupt(STEP_TIMER_NUM)
  90. #define DISABLE_STEPPER_DRIVER_INTERRUPT() HAL_timer_disable_interrupt(STEP_TIMER_NUM)
  91. #define STEPPER_ISR_ENABLED() HAL_timer_interrupt_enabled(STEP_TIMER_NUM)
  92. #define ENABLE_TEMPERATURE_INTERRUPT() HAL_timer_enable_interrupt(TEMP_TIMER_NUM)
  93. #define DISABLE_TEMPERATURE_INTERRUPT() HAL_timer_disable_interrupt(TEMP_TIMER_NUM)
  94. extern void Step_Handler(stimer_t *htim);
  95. extern void Temp_Handler(stimer_t *htim);
  96. #define HAL_STEP_TIMER_ISR() void Step_Handler(stimer_t *htim)
  97. #define HAL_TEMP_TIMER_ISR() void Temp_Handler(stimer_t *htim)
  98. // --------------------------------------------------------------------------
  99. // Types
  100. // --------------------------------------------------------------------------
  101. typedef stimer_t stm32f4_timer_t;
  102. // --------------------------------------------------------------------------
  103. // Public Variables
  104. // --------------------------------------------------------------------------
  105. extern stm32f4_timer_t TimerHandle[];
  106. // --------------------------------------------------------------------------
  107. // Public functions
  108. // --------------------------------------------------------------------------
  109. void HAL_timer_start(const uint8_t timer_num, const uint32_t frequency);
  110. void HAL_timer_enable_interrupt(const uint8_t timer_num);
  111. void HAL_timer_disable_interrupt(const uint8_t timer_num);
  112. bool HAL_timer_interrupt_enabled(const uint8_t timer_num);
  113. FORCE_INLINE static uint32_t HAL_timer_get_count(const uint8_t timer_num) {
  114. return __HAL_TIM_GET_COUNTER(&TimerHandle[timer_num].handle);
  115. }
  116. FORCE_INLINE static void HAL_timer_set_compare(const uint8_t timer_num, const uint32_t compare) {
  117. __HAL_TIM_SET_AUTORELOAD(&TimerHandle[timer_num].handle, compare);
  118. if (HAL_timer_get_count(timer_num) >= compare)
  119. TimerHandle[timer_num].handle.Instance->EGR |= TIM_EGR_UG; // Generate an immediate update interrupt
  120. }
  121. FORCE_INLINE static hal_timer_t HAL_timer_get_compare(const uint8_t timer_num) {
  122. return __HAL_TIM_GET_AUTORELOAD(&TimerHandle[timer_num].handle);
  123. }
  124. #define HAL_timer_isr_prologue(TIMER_NUM)
  125. #define HAL_timer_isr_epilogue(TIMER_NUM)