temperature.h 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  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 "planner.h"
  20. #ifdef PID_ADD_EXTRUSION_RATE
  21. #include "stepper.h"
  22. #endif
  23. #define ENABLE_TEMPERATURE_INTERRUPT() TIMSK0 |= (1<<OCIE0B)
  24. #define DISABLE_TEMPERATURE_INTERRUPT() TIMSK0 &= ~(1<<OCIE0B)
  25. // public functions
  26. void tp_init(); //initialize the heating
  27. void manage_heater(); //it is critical that this is called periodically.
  28. // low level conversion routines
  29. // do not use these routines and variables outside of temperature.cpp
  30. extern int target_temperature[EXTRUDERS];
  31. extern float current_temperature[EXTRUDERS];
  32. #ifdef SHOW_TEMP_ADC_VALUES
  33. extern int current_temperature_raw[EXTRUDERS];
  34. extern int current_temperature_bed_raw;
  35. #endif
  36. extern int target_temperature_bed;
  37. extern float current_temperature_bed;
  38. #ifdef PINDA_THERMISTOR
  39. //extern int current_temperature_raw_pinda;
  40. extern float current_temperature_pinda;
  41. #endif
  42. #ifdef AMBIENT_THERMISTOR
  43. //extern int current_temperature_raw_ambient;
  44. extern float current_temperature_ambient;
  45. #endif
  46. #ifdef VOLT_PWR_PIN
  47. extern int current_voltage_raw_pwr;
  48. #endif
  49. #ifdef VOLT_BED_PIN
  50. extern int current_voltage_raw_bed;
  51. #endif
  52. #ifdef TEMP_SENSOR_1_AS_REDUNDANT
  53. extern float redundant_temperature;
  54. #endif
  55. #if defined(CONTROLLERFAN_PIN) && CONTROLLERFAN_PIN > -1
  56. extern unsigned char soft_pwm_bed;
  57. #endif
  58. #ifdef PIDTEMP
  59. extern int pid_cycle, pid_number_of_cycles;
  60. extern float Kp,Ki,Kd,Kc,_Kp,_Ki,_Kd;
  61. extern bool pid_tuning_finished;
  62. float scalePID_i(float i);
  63. float scalePID_d(float d);
  64. float unscalePID_i(float i);
  65. float unscalePID_d(float d);
  66. #endif
  67. #ifdef PIDTEMPBED
  68. extern float bedKp,bedKi,bedKd;
  69. #endif
  70. #ifdef BABYSTEPPING
  71. extern volatile int babystepsTodo[3];
  72. #endif
  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. inline void babystepsTodoZsubtract(int n)
  82. {
  83. if (n != 0) {
  84. CRITICAL_SECTION_START
  85. babystepsTodo[Z_AXIS] -= n;
  86. CRITICAL_SECTION_END
  87. }
  88. }
  89. //high level conversion routines, for use outside of temperature.cpp
  90. //inline so that there is no performance decrease.
  91. //deg=degreeCelsius
  92. FORCE_INLINE float degHotend(uint8_t extruder) {
  93. return current_temperature[extruder];
  94. };
  95. #ifdef SHOW_TEMP_ADC_VALUES
  96. FORCE_INLINE float rawHotendTemp(uint8_t extruder) {
  97. return current_temperature_raw[extruder];
  98. };
  99. FORCE_INLINE float rawBedTemp() {
  100. return current_temperature_bed_raw;
  101. };
  102. #endif
  103. FORCE_INLINE float degBed() {
  104. return current_temperature_bed;
  105. };
  106. FORCE_INLINE float degTargetHotend(uint8_t extruder) {
  107. return target_temperature[extruder];
  108. };
  109. FORCE_INLINE float degTargetBed() {
  110. return target_temperature_bed;
  111. };
  112. FORCE_INLINE void setTargetHotend(const float &celsius, uint8_t extruder) {
  113. target_temperature[extruder] = celsius;
  114. };
  115. FORCE_INLINE void setTargetBed(const float &celsius) {
  116. target_temperature_bed = celsius;
  117. };
  118. FORCE_INLINE bool isHeatingHotend(uint8_t extruder){
  119. return target_temperature[extruder] > current_temperature[extruder];
  120. };
  121. FORCE_INLINE bool isHeatingBed() {
  122. return target_temperature_bed > current_temperature_bed;
  123. };
  124. FORCE_INLINE bool isCoolingHotend(uint8_t extruder) {
  125. return target_temperature[extruder] < current_temperature[extruder];
  126. };
  127. FORCE_INLINE bool isCoolingBed() {
  128. return target_temperature_bed < current_temperature_bed;
  129. };
  130. #define degHotend0() degHotend(0)
  131. #define degTargetHotend0() degTargetHotend(0)
  132. #define setTargetHotend0(_celsius) setTargetHotend((_celsius), 0)
  133. #define isHeatingHotend0() isHeatingHotend(0)
  134. #define isCoolingHotend0() isCoolingHotend(0)
  135. #if EXTRUDERS > 1
  136. #define degHotend1() degHotend(1)
  137. #define degTargetHotend1() degTargetHotend(1)
  138. #define setTargetHotend1(_celsius) setTargetHotend((_celsius), 1)
  139. #define isHeatingHotend1() isHeatingHotend(1)
  140. #define isCoolingHotend1() isCoolingHotend(1)
  141. #else
  142. #define setTargetHotend1(_celsius) do{}while(0)
  143. #endif
  144. #if EXTRUDERS > 2
  145. #define degHotend2() degHotend(2)
  146. #define degTargetHotend2() degTargetHotend(2)
  147. #define setTargetHotend2(_celsius) setTargetHotend((_celsius), 2)
  148. #define isHeatingHotend2() isHeatingHotend(2)
  149. #define isCoolingHotend2() isCoolingHotend(2)
  150. #else
  151. #define setTargetHotend2(_celsius) do{}while(0)
  152. #endif
  153. #if EXTRUDERS > 3
  154. #error Invalid number of extruders
  155. #endif
  156. int getHeaterPower(int heater);
  157. void disable_heater();
  158. void setWatch();
  159. void updatePID();
  160. FORCE_INLINE void autotempShutdown(){
  161. #ifdef AUTOTEMP
  162. if(autotemp_enabled)
  163. {
  164. autotemp_enabled=false;
  165. if(degTargetHotend(active_extruder)>autotemp_min)
  166. setTargetHotend(0,active_extruder);
  167. }
  168. #endif
  169. }
  170. void PID_autotune(float temp, int extruder, int ncycles);
  171. void setExtruderAutoFanState(int pin, bool state);
  172. void checkExtruderAutoFans();
  173. #if (defined(FANCHECK) && defined(TACH_0) && (TACH_0 > -1))
  174. void countFanSpeed();
  175. void checkFanSpeed();
  176. void fanSpeedError(unsigned char _fan);
  177. void check_fans();
  178. #endif //(defined(TACH_0))
  179. void check_min_temp();
  180. void check_max_temp();
  181. #endif