temperature.h 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254
  1. /*
  2. temperature.h - temperature controller
  3. Part of Marlin
  4. Copyright (c) 2011 Erik van der Zalm
  5. Grbl is free software: you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation, either version 3 of the License, or
  8. (at your option) any later version.
  9. Grbl is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with Grbl. If not, see <http://www.gnu.org/licenses/>.
  15. */
  16. #ifndef temperature_h
  17. #define temperature_h
  18. #include "Marlin.h"
  19. #include "config.h"
  20. #ifdef SYSTEM_TIMER_2
  21. #define ENABLE_SOFT_PWM_INTERRUPT() TIMSK2 |= (1<<OCIE2B)
  22. #define DISABLE_SOFT_PWM_INTERRUPT() TIMSK2 &= ~(1<<OCIE2B)
  23. #else //SYSTEM_TIMER_2
  24. #define ENABLE_SOFT_PWM_INTERRUPT() TIMSK0 |= (1<<OCIE0B)
  25. #define DISABLE_SOFT_PWM_INTERRUPT() TIMSK0 &= ~(1<<OCIE0B)
  26. #endif //SYSTEM_TIMER_2
  27. // public functions
  28. void soft_pwm_init(); //initialize the soft pwm isr
  29. void temp_mgr_init(); //initialize the temperature handler
  30. void manage_heater(); //it is critical that this is called periodically.
  31. extern bool checkAllHotends(void);
  32. // low level conversion routines
  33. // do not use these routines and variables outside of temperature.cpp
  34. extern int target_temperature[EXTRUDERS];
  35. extern float current_temperature[EXTRUDERS];
  36. #ifdef SHOW_TEMP_ADC_VALUES
  37. extern int current_temperature_raw[EXTRUDERS];
  38. extern int current_temperature_bed_raw;
  39. #endif
  40. extern int target_temperature_bed;
  41. extern float current_temperature_bed;
  42. #ifdef PINDA_THERMISTOR
  43. extern uint16_t current_temperature_raw_pinda;
  44. extern float current_temperature_pinda;
  45. bool has_temperature_compensation();
  46. #endif
  47. #ifdef AMBIENT_THERMISTOR
  48. extern int current_temperature_raw_ambient;
  49. extern float current_temperature_ambient;
  50. #endif
  51. #ifdef VOLT_PWR_PIN
  52. extern int current_voltage_raw_pwr;
  53. #endif
  54. #ifdef VOLT_BED_PIN
  55. extern int current_voltage_raw_bed;
  56. #endif
  57. #ifdef IR_SENSOR_ANALOG
  58. extern uint16_t current_voltage_raw_IR;
  59. #endif //IR_SENSOR_ANALOG
  60. extern bool bedPWMDisabled;
  61. #ifdef PIDTEMP
  62. extern int pid_cycle, pid_number_of_cycles;
  63. extern float _Kp,_Ki,_Kd;
  64. float scalePID_i(float i);
  65. float scalePID_d(float d);
  66. float unscalePID_i(float i);
  67. float unscalePID_d(float d);
  68. bool pidTuningRunning(); // returns true if PID tuning is still running
  69. void preparePidTuning(); // non-blocking call to set "pidTuningRunning" to true immediately
  70. #endif
  71. #ifdef BABYSTEPPING
  72. extern volatile int babystepsTodo[3];
  73. inline void babystepsTodoZadd(int n)
  74. {
  75. if (n != 0) {
  76. CRITICAL_SECTION_START
  77. babystepsTodo[Z_AXIS] += n;
  78. CRITICAL_SECTION_END
  79. }
  80. }
  81. #endif
  82. void resetPID(uint8_t extruder);
  83. //high level conversion routines, for use outside of temperature.cpp
  84. //inline so that there is no performance decrease.
  85. //deg=degreeCelsius
  86. // Doesn't save FLASH when FORCE_INLINE removed.
  87. FORCE_INLINE float degHotend(uint8_t extruder) {
  88. return current_temperature[extruder];
  89. };
  90. #ifdef SHOW_TEMP_ADC_VALUES
  91. FORCE_INLINE float rawHotendTemp(uint8_t extruder) {
  92. return current_temperature_raw[extruder];
  93. };
  94. FORCE_INLINE float rawBedTemp() {
  95. return current_temperature_bed_raw;
  96. };
  97. #endif
  98. FORCE_INLINE float degBed() {
  99. return current_temperature_bed;
  100. };
  101. // Doesn't save FLASH when FORCE_INLINE removed.
  102. FORCE_INLINE float degTargetHotend(uint8_t extruder) {
  103. return target_temperature[extruder];
  104. };
  105. FORCE_INLINE float degTargetBed() {
  106. return target_temperature_bed;
  107. };
  108. // Doesn't save FLASH when FORCE_INLINE removed.
  109. FORCE_INLINE void setTargetHotend(const float &celsius, uint8_t extruder) {
  110. target_temperature[extruder] = celsius;
  111. resetPID(extruder);
  112. };
  113. // Doesn't save FLASH when not inlined.
  114. static inline void setTargetHotendSafe(const float &celsius, uint8_t extruder)
  115. {
  116. if (extruder<EXTRUDERS) {
  117. setTargetHotend(celsius, extruder);
  118. }
  119. }
  120. // Doesn't save FLASH when not inlined.
  121. static inline void setAllTargetHotends(const float &celsius)
  122. {
  123. for(uint8_t i = 0; i < EXTRUDERS; i++) setTargetHotend(celsius, i);
  124. }
  125. FORCE_INLINE void setTargetBed(const float &celsius) {
  126. target_temperature_bed = celsius;
  127. };
  128. FORCE_INLINE bool isHeatingHotend(uint8_t extruder){
  129. return target_temperature[extruder] > current_temperature[extruder];
  130. };
  131. FORCE_INLINE bool isHeatingBed() {
  132. return target_temperature_bed > current_temperature_bed;
  133. };
  134. FORCE_INLINE bool isCoolingHotend(uint8_t extruder) {
  135. return target_temperature[extruder] < current_temperature[extruder];
  136. };
  137. FORCE_INLINE bool isCoolingBed() {
  138. return target_temperature_bed < current_temperature_bed;
  139. };
  140. #define degHotend0() degHotend(0)
  141. #define degTargetHotend0() degTargetHotend(0)
  142. #define setTargetHotend0(_celsius) setTargetHotend((_celsius), 0)
  143. #define isHeatingHotend0() isHeatingHotend(0)
  144. #define isCoolingHotend0() isCoolingHotend(0)
  145. #if EXTRUDERS > 1
  146. #define degHotend1() degHotend(1)
  147. #define degTargetHotend1() degTargetHotend(1)
  148. #define setTargetHotend1(_celsius) setTargetHotend((_celsius), 1)
  149. #define isHeatingHotend1() isHeatingHotend(1)
  150. #define isCoolingHotend1() isCoolingHotend(1)
  151. #else
  152. #define setTargetHotend1(_celsius) do{}while(0)
  153. #endif
  154. #if EXTRUDERS > 2
  155. #define degHotend2() degHotend(2)
  156. #define degTargetHotend2() degTargetHotend(2)
  157. #define setTargetHotend2(_celsius) setTargetHotend((_celsius), 2)
  158. #define isHeatingHotend2() isHeatingHotend(2)
  159. #define isCoolingHotend2() isCoolingHotend(2)
  160. #else
  161. #define setTargetHotend2(_celsius) do{}while(0)
  162. #endif
  163. #if EXTRUDERS > 3
  164. #error Invalid number of extruders
  165. #endif
  166. // return "false", if all heaters are 'off' (ie. "true", if any heater is 'on')
  167. #define CHECK_ALL_HEATERS (checkAllHotends()||(target_temperature_bed!=0))
  168. int getHeaterPower(int heater);
  169. void disable_heater(); // Disable all heaters *instantaneously*
  170. void updatePID();
  171. FORCE_INLINE void autotempShutdown(){
  172. #ifdef AUTOTEMP
  173. if(autotemp_enabled)
  174. {
  175. autotemp_enabled=false;
  176. if(degTargetHotend(active_extruder)>autotemp_min)
  177. setTargetHotend(0,active_extruder);
  178. }
  179. #endif
  180. }
  181. void PID_autotune(float temp, int extruder, int ncycles);
  182. #ifdef TEMP_MODEL
  183. void temp_model_set_enabled(bool enabled);
  184. void temp_model_set_params(float C = NAN, float P = NAN, float Ta_corr = NAN, float warn = NAN, float err = NAN);
  185. void temp_model_set_resistance(uint8_t index, float R);
  186. void temp_model_report_settings();
  187. void temp_model_reset_settings();
  188. void temp_model_load_settings();
  189. void temp_model_save_settings();
  190. void temp_model_autotune(float temp = NAN);
  191. #ifdef TEMP_MODEL_DEBUG
  192. void temp_model_log_enable(bool enable);
  193. #endif
  194. #endif
  195. #ifdef FAN_SOFT_PWM
  196. extern unsigned char fanSpeedSoftPwm;
  197. #endif
  198. extern uint8_t fanSpeedBckp;
  199. #endif