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.

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