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.

temperature.h 3.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  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. // public functions
  24. void tp_init(); //initialise the heating
  25. void manage_heater(); //it is critical that this is called periodically.
  26. //low leven conversion routines
  27. // do not use this routines and variables outsie of temperature.cpp
  28. extern int target_temperature[EXTRUDERS];
  29. extern float current_temperature[EXTRUDERS];
  30. extern int target_temperature_bed;
  31. extern float current_temperature_bed;
  32. #ifdef PIDTEMP
  33. extern float Kp[EXTRUDERS];
  34. extern float Ki[EXTRUDERS];
  35. extern float Kd[EXTRUDERS];
  36. extern float Kc;
  37. #endif
  38. #ifdef PIDTEMPBED
  39. extern float bedKp,bedKi,bedKd;
  40. #endif
  41. //high level conversion routines, for use outside of temperature.cpp
  42. //inline so that there is no performance decrease.
  43. //deg=degreeCelsius
  44. FORCE_INLINE float degHotend(uint8_t extruder) {
  45. return current_temperature[extruder];
  46. };
  47. FORCE_INLINE float degBed() {
  48. return current_temperature_bed;
  49. };
  50. FORCE_INLINE float degTargetHotend(uint8_t extruder) {
  51. return target_temperature[extruder];
  52. };
  53. FORCE_INLINE float degTargetBed() {
  54. return target_temperature_bed;
  55. };
  56. FORCE_INLINE void setTargetHotend(const float &celsius, uint8_t extruder) {
  57. target_temperature[extruder] = celsius;
  58. };
  59. FORCE_INLINE void setTargetBed(const float &celsius) {
  60. target_temperature_bed = celsius;
  61. };
  62. FORCE_INLINE bool isHeatingHotend(uint8_t extruder){
  63. return target_temperature[extruder] > current_temperature[extruder];
  64. };
  65. FORCE_INLINE bool isHeatingBed() {
  66. return target_temperature_bed > current_temperature_bed;
  67. };
  68. FORCE_INLINE bool isCoolingHotend(uint8_t extruder) {
  69. return target_temperature[extruder] < current_temperature[extruder];
  70. };
  71. FORCE_INLINE bool isCoolingBed() {
  72. return target_temperature_bed < current_temperature_bed;
  73. };
  74. #define degHotend0() degHotend(0)
  75. #define degTargetHotend0() degTargetHotend(0)
  76. #define setTargetHotend0(_celsius) setTargetHotend((_celsius), 0)
  77. #define isHeatingHotend0() isHeatingHotend(0)
  78. #define isCoolingHotend0() isCoolingHotend(0)
  79. #if EXTRUDERS > 1
  80. #define degHotend1() degHotend(1)
  81. #define degTargetHotend1() degTargetHotend(1)
  82. #define setTargetHotend1(_celsius) setTargetHotend((_celsius), 1)
  83. #define isHeatingHotend1() isHeatingHotend(1)
  84. #define isCoolingHotend1() isCoolingHotend(1)
  85. #else
  86. #define setTargetHotend1(_celsius) do{}while(0)
  87. #endif
  88. #if EXTRUDERS > 2
  89. #define degHotend2() degHotend(2)
  90. #define degTargetHotend2() degTargetHotend(2)
  91. #define setTargetHotend2(_celsius) setTargetHotend((_celsius), 2)
  92. #define isHeatingHotend2() isHeatingHotend(2)
  93. #define isCoolingHotend2() isCoolingHotend(2)
  94. #else
  95. #define setTargetHotend2(_celsius) do{}while(0)
  96. #endif
  97. #if EXTRUDERS > 3
  98. #error Invalid number of extruders
  99. #endif
  100. int getHeaterPower(int heater);
  101. void disable_heater();
  102. void setWatch();
  103. void updatePID();
  104. FORCE_INLINE void autotempShutdown(){
  105. #ifdef AUTOTEMP
  106. if(autotemp_enabled)
  107. {
  108. autotemp_enabled=false;
  109. if(degTargetHotend(active_extruder)>autotemp_min)
  110. setTargetHotend(0,active_extruder);
  111. }
  112. #endif
  113. }
  114. void PID_autotune(float temp, int extruder, int ncycles);
  115. #endif