temperature.cpp 62 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130
  1. /*
  2. temperature.c - temperature control
  3. Part of Marlin
  4. Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
  5. This program 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. This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
  15. */
  16. /*
  17. This firmware is a mashup between Sprinter and grbl.
  18. (https://github.com/kliment/Sprinter)
  19. (https://github.com/simen/grbl/tree)
  20. It has preliminary support for Matthew Roberts advance algorithm
  21. http://reprap.org/pipermail/reprap-dev/2011-May/003323.html
  22. */
  23. #include "Marlin.h"
  24. #include "ultralcd.h"
  25. #include "sound.h"
  26. #include "temperature.h"
  27. #include "cardreader.h"
  28. #include "Sd2PinMap.h"
  29. #include <avr/wdt.h>
  30. #include "adc.h"
  31. #include "ConfigurationStore.h"
  32. #include "Timer.h"
  33. #include "Configuration_prusa.h"
  34. //===========================================================================
  35. //=============================public variables============================
  36. //===========================================================================
  37. int target_temperature[EXTRUDERS] = { 0 };
  38. int target_temperature_bed = 0;
  39. int current_temperature_raw[EXTRUDERS] = { 0 };
  40. float current_temperature[EXTRUDERS] = { 0.0 };
  41. #ifdef PINDA_THERMISTOR
  42. uint16_t current_temperature_raw_pinda = 0 ; //value with more averaging applied
  43. uint16_t current_temperature_raw_pinda_fast = 0; //value read from adc
  44. float current_temperature_pinda = 0.0;
  45. #endif //PINDA_THERMISTOR
  46. #ifdef AMBIENT_THERMISTOR
  47. int current_temperature_raw_ambient = 0 ;
  48. float current_temperature_ambient = 0.0;
  49. #endif //AMBIENT_THERMISTOR
  50. #ifdef VOLT_PWR_PIN
  51. int current_voltage_raw_pwr = 0;
  52. #endif
  53. #ifdef VOLT_BED_PIN
  54. int current_voltage_raw_bed = 0;
  55. #endif
  56. int current_temperature_bed_raw = 0;
  57. float current_temperature_bed = 0.0;
  58. #ifdef TEMP_SENSOR_1_AS_REDUNDANT
  59. int redundant_temperature_raw = 0;
  60. float redundant_temperature = 0.0;
  61. #endif
  62. #ifdef PIDTEMP
  63. float _Kp, _Ki, _Kd;
  64. int pid_cycle, pid_number_of_cycles;
  65. bool pid_tuning_finished = false;
  66. #ifdef PID_ADD_EXTRUSION_RATE
  67. float Kc=DEFAULT_Kc;
  68. #endif
  69. #endif //PIDTEMP
  70. #ifdef FAN_SOFT_PWM
  71. unsigned char fanSpeedSoftPwm;
  72. #endif
  73. unsigned char soft_pwm_bed;
  74. #ifdef BABYSTEPPING
  75. volatile int babystepsTodo[3]={0,0,0};
  76. #endif
  77. //===========================================================================
  78. //=============================private variables============================
  79. //===========================================================================
  80. static volatile bool temp_meas_ready = false;
  81. #ifdef PIDTEMP
  82. //static cannot be external:
  83. static float iState_sum[EXTRUDERS] = { 0 };
  84. static float dState_last[EXTRUDERS] = { 0 };
  85. static float pTerm[EXTRUDERS];
  86. static float iTerm[EXTRUDERS];
  87. static float dTerm[EXTRUDERS];
  88. //int output;
  89. static float pid_error[EXTRUDERS];
  90. static float iState_sum_min[EXTRUDERS];
  91. static float iState_sum_max[EXTRUDERS];
  92. // static float pid_input[EXTRUDERS];
  93. // static float pid_output[EXTRUDERS];
  94. static bool pid_reset[EXTRUDERS];
  95. #endif //PIDTEMP
  96. #ifdef PIDTEMPBED
  97. //static cannot be external:
  98. static float temp_iState_bed = { 0 };
  99. static float temp_dState_bed = { 0 };
  100. static float pTerm_bed;
  101. static float iTerm_bed;
  102. static float dTerm_bed;
  103. //int output;
  104. static float pid_error_bed;
  105. static float temp_iState_min_bed;
  106. static float temp_iState_max_bed;
  107. #else //PIDTEMPBED
  108. static unsigned long previous_millis_bed_heater;
  109. #endif //PIDTEMPBED
  110. static unsigned char soft_pwm[EXTRUDERS];
  111. #ifdef FAN_SOFT_PWM
  112. static unsigned char soft_pwm_fan;
  113. #endif
  114. #if (defined(EXTRUDER_0_AUTO_FAN_PIN) && EXTRUDER_0_AUTO_FAN_PIN > -1) || \
  115. (defined(EXTRUDER_1_AUTO_FAN_PIN) && EXTRUDER_1_AUTO_FAN_PIN > -1) || \
  116. (defined(EXTRUDER_2_AUTO_FAN_PIN) && EXTRUDER_2_AUTO_FAN_PIN > -1)
  117. unsigned long extruder_autofan_last_check = _millis();
  118. uint8_t fanSpeedBckp = 255;
  119. bool fan_measuring = false;
  120. #endif
  121. #if EXTRUDERS > 3
  122. # error Unsupported number of extruders
  123. #elif EXTRUDERS > 2
  124. # define ARRAY_BY_EXTRUDERS(v1, v2, v3) { v1, v2, v3 }
  125. #elif EXTRUDERS > 1
  126. # define ARRAY_BY_EXTRUDERS(v1, v2, v3) { v1, v2 }
  127. #else
  128. # define ARRAY_BY_EXTRUDERS(v1, v2, v3) { v1 }
  129. #endif
  130. static ShortTimer oTimer4minTempHeater,oTimer4minTempBed;
  131. // Init min and max temp with extreme values to prevent false errors during startup
  132. static int minttemp_raw[EXTRUDERS] = ARRAY_BY_EXTRUDERS( HEATER_0_RAW_LO_TEMP , HEATER_1_RAW_LO_TEMP , HEATER_2_RAW_LO_TEMP );
  133. static int maxttemp_raw[EXTRUDERS] = ARRAY_BY_EXTRUDERS( HEATER_0_RAW_HI_TEMP , HEATER_1_RAW_HI_TEMP , HEATER_2_RAW_HI_TEMP );
  134. static int minttemp[EXTRUDERS] = ARRAY_BY_EXTRUDERS( 0, 0, 0 );
  135. static int maxttemp[EXTRUDERS] = ARRAY_BY_EXTRUDERS( 16383, 16383, 16383 );
  136. #ifdef BED_MINTEMP
  137. static int bed_minttemp_raw = HEATER_BED_RAW_LO_TEMP;
  138. #endif
  139. #ifdef BED_MAXTEMP
  140. static int bed_maxttemp_raw = HEATER_BED_RAW_HI_TEMP;
  141. #endif
  142. #ifdef TEMP_SENSOR_1_AS_REDUNDANT
  143. static void *heater_ttbl_map[2] = {(void *)HEATER_0_TEMPTABLE, (void *)HEATER_1_TEMPTABLE };
  144. static uint8_t heater_ttbllen_map[2] = { HEATER_0_TEMPTABLE_LEN, HEATER_1_TEMPTABLE_LEN };
  145. #else
  146. static void *heater_ttbl_map[EXTRUDERS] = ARRAY_BY_EXTRUDERS( (void *)HEATER_0_TEMPTABLE, (void *)HEATER_1_TEMPTABLE, (void *)HEATER_2_TEMPTABLE );
  147. static uint8_t heater_ttbllen_map[EXTRUDERS] = ARRAY_BY_EXTRUDERS( HEATER_0_TEMPTABLE_LEN, HEATER_1_TEMPTABLE_LEN, HEATER_2_TEMPTABLE_LEN );
  148. #endif
  149. static float analog2temp(int raw, uint8_t e);
  150. static float analog2tempBed(int raw);
  151. static float analog2tempAmbient(int raw);
  152. static void updateTemperaturesFromRawValues();
  153. enum TempRunawayStates
  154. {
  155. TempRunaway_INACTIVE = 0,
  156. TempRunaway_PREHEAT = 1,
  157. TempRunaway_ACTIVE = 2,
  158. };
  159. #ifdef WATCH_TEMP_PERIOD
  160. int watch_start_temp[EXTRUDERS] = ARRAY_BY_EXTRUDERS(0,0,0);
  161. unsigned long watchmillis[EXTRUDERS] = ARRAY_BY_EXTRUDERS(0,0,0);
  162. #endif //WATCH_TEMP_PERIOD
  163. #ifndef SOFT_PWM_SCALE
  164. #define SOFT_PWM_SCALE 0
  165. #endif
  166. //===========================================================================
  167. //============================= functions ============================
  168. //===========================================================================
  169. #if (defined (TEMP_RUNAWAY_BED_HYSTERESIS) && TEMP_RUNAWAY_BED_TIMEOUT > 0) || (defined (TEMP_RUNAWAY_EXTRUDER_HYSTERESIS) && TEMP_RUNAWAY_EXTRUDER_TIMEOUT > 0)
  170. static float temp_runaway_status[4];
  171. static float temp_runaway_target[4];
  172. static float temp_runaway_timer[4];
  173. static int temp_runaway_error_counter[4];
  174. static void temp_runaway_check(int _heater_id, float _target_temperature, float _current_temperature, float _output, bool _isbed);
  175. static void temp_runaway_stop(bool isPreheat, bool isBed);
  176. #endif
  177. void PID_autotune(float temp, int extruder, int ncycles)
  178. {
  179. pid_number_of_cycles = ncycles;
  180. pid_tuning_finished = false;
  181. float input = 0.0;
  182. pid_cycle=0;
  183. bool heating = true;
  184. unsigned long temp_millis = _millis();
  185. unsigned long t1=temp_millis;
  186. unsigned long t2=temp_millis;
  187. long t_high = 0;
  188. long t_low = 0;
  189. long bias, d;
  190. float Ku, Tu;
  191. float max = 0, min = 10000;
  192. uint8_t safety_check_cycles = 0;
  193. const uint8_t safety_check_cycles_count = (extruder < 0) ? 45 : 10; //10 cycles / 20s delay for extruder and 45 cycles / 90s for heatbed
  194. float temp_ambient;
  195. #if (defined(EXTRUDER_0_AUTO_FAN_PIN) && EXTRUDER_0_AUTO_FAN_PIN > -1) || \
  196. (defined(EXTRUDER_1_AUTO_FAN_PIN) && EXTRUDER_1_AUTO_FAN_PIN > -1) || \
  197. (defined(EXTRUDER_2_AUTO_FAN_PIN) && EXTRUDER_2_AUTO_FAN_PIN > -1)
  198. unsigned long extruder_autofan_last_check = _millis();
  199. #endif
  200. if ((extruder >= EXTRUDERS)
  201. #if (TEMP_BED_PIN <= -1)
  202. ||(extruder < 0)
  203. #endif
  204. ){
  205. SERIAL_ECHOLN("PID Autotune failed. Bad extruder number.");
  206. pid_tuning_finished = true;
  207. pid_cycle = 0;
  208. return;
  209. }
  210. SERIAL_ECHOLN("PID Autotune start");
  211. disable_heater(); // switch off all heaters.
  212. if (extruder<0)
  213. {
  214. soft_pwm_bed = (MAX_BED_POWER)/2;
  215. timer02_set_pwm0(soft_pwm_bed << 1);
  216. bias = d = (MAX_BED_POWER)/2;
  217. }
  218. else
  219. {
  220. soft_pwm[extruder] = (PID_MAX)/2;
  221. bias = d = (PID_MAX)/2;
  222. }
  223. for(;;) {
  224. #ifdef WATCHDOG
  225. wdt_reset();
  226. #endif //WATCHDOG
  227. if(temp_meas_ready == true) { // temp sample ready
  228. updateTemperaturesFromRawValues();
  229. input = (extruder<0)?current_temperature_bed:current_temperature[extruder];
  230. max=max(max,input);
  231. min=min(min,input);
  232. #if (defined(EXTRUDER_0_AUTO_FAN_PIN) && EXTRUDER_0_AUTO_FAN_PIN > -1) || \
  233. (defined(EXTRUDER_1_AUTO_FAN_PIN) && EXTRUDER_1_AUTO_FAN_PIN > -1) || \
  234. (defined(EXTRUDER_2_AUTO_FAN_PIN) && EXTRUDER_2_AUTO_FAN_PIN > -1)
  235. if(_millis() - extruder_autofan_last_check > 2500) {
  236. checkExtruderAutoFans();
  237. extruder_autofan_last_check = _millis();
  238. }
  239. #endif
  240. if(heating == true && input > temp) {
  241. if(_millis() - t2 > 5000) {
  242. heating=false;
  243. if (extruder<0)
  244. {
  245. soft_pwm_bed = (bias - d) >> 1;
  246. timer02_set_pwm0(soft_pwm_bed << 1);
  247. }
  248. else
  249. soft_pwm[extruder] = (bias - d) >> 1;
  250. t1=_millis();
  251. t_high=t1 - t2;
  252. max=temp;
  253. }
  254. }
  255. if(heating == false && input < temp) {
  256. if(_millis() - t1 > 5000) {
  257. heating=true;
  258. t2=_millis();
  259. t_low=t2 - t1;
  260. if(pid_cycle > 0) {
  261. bias += (d*(t_high - t_low))/(t_low + t_high);
  262. bias = constrain(bias, 20 ,(extruder<0?(MAX_BED_POWER):(PID_MAX))-20);
  263. if(bias > (extruder<0?(MAX_BED_POWER):(PID_MAX))/2) d = (extruder<0?(MAX_BED_POWER):(PID_MAX)) - 1 - bias;
  264. else d = bias;
  265. SERIAL_PROTOCOLPGM(" bias: "); SERIAL_PROTOCOL(bias);
  266. SERIAL_PROTOCOLPGM(" d: "); SERIAL_PROTOCOL(d);
  267. SERIAL_PROTOCOLPGM(" min: "); SERIAL_PROTOCOL(min);
  268. SERIAL_PROTOCOLPGM(" max: "); SERIAL_PROTOCOLLN(max);
  269. if(pid_cycle > 2) {
  270. Ku = (4.0*d)/(3.14159*(max-min)/2.0);
  271. Tu = ((float)(t_low + t_high)/1000.0);
  272. SERIAL_PROTOCOLPGM(" Ku: "); SERIAL_PROTOCOL(Ku);
  273. SERIAL_PROTOCOLPGM(" Tu: "); SERIAL_PROTOCOLLN(Tu);
  274. _Kp = 0.6*Ku;
  275. _Ki = 2*_Kp/Tu;
  276. _Kd = _Kp*Tu/8;
  277. SERIAL_PROTOCOLLNPGM(" Classic PID ");
  278. SERIAL_PROTOCOLPGM(" Kp: "); SERIAL_PROTOCOLLN(_Kp);
  279. SERIAL_PROTOCOLPGM(" Ki: "); SERIAL_PROTOCOLLN(_Ki);
  280. SERIAL_PROTOCOLPGM(" Kd: "); SERIAL_PROTOCOLLN(_Kd);
  281. /*
  282. _Kp = 0.33*Ku;
  283. _Ki = _Kp/Tu;
  284. _Kd = _Kp*Tu/3;
  285. SERIAL_PROTOCOLLNPGM(" Some overshoot ");
  286. SERIAL_PROTOCOLPGM(" Kp: "); SERIAL_PROTOCOLLN(_Kp);
  287. SERIAL_PROTOCOLPGM(" Ki: "); SERIAL_PROTOCOLLN(_Ki);
  288. SERIAL_PROTOCOLPGM(" Kd: "); SERIAL_PROTOCOLLN(_Kd);
  289. _Kp = 0.2*Ku;
  290. _Ki = 2*_Kp/Tu;
  291. _Kd = _Kp*Tu/3;
  292. SERIAL_PROTOCOLLNPGM(" No overshoot ");
  293. SERIAL_PROTOCOLPGM(" Kp: "); SERIAL_PROTOCOLLN(_Kp);
  294. SERIAL_PROTOCOLPGM(" Ki: "); SERIAL_PROTOCOLLN(_Ki);
  295. SERIAL_PROTOCOLPGM(" Kd: "); SERIAL_PROTOCOLLN(_Kd);
  296. */
  297. }
  298. }
  299. if (extruder<0)
  300. {
  301. soft_pwm_bed = (bias + d) >> 1;
  302. timer02_set_pwm0(soft_pwm_bed << 1);
  303. }
  304. else
  305. soft_pwm[extruder] = (bias + d) >> 1;
  306. pid_cycle++;
  307. min=temp;
  308. }
  309. }
  310. }
  311. if(input > (temp + 20)) {
  312. SERIAL_PROTOCOLLNPGM("PID Autotune failed! Temperature too high");
  313. pid_tuning_finished = true;
  314. pid_cycle = 0;
  315. return;
  316. }
  317. if(_millis() - temp_millis > 2000) {
  318. int p;
  319. if (extruder<0){
  320. p=soft_pwm_bed;
  321. SERIAL_PROTOCOLPGM("B:");
  322. }else{
  323. p=soft_pwm[extruder];
  324. SERIAL_PROTOCOLPGM("T:");
  325. }
  326. SERIAL_PROTOCOL(input);
  327. SERIAL_PROTOCOLPGM(" @:");
  328. SERIAL_PROTOCOLLN(p);
  329. if (safety_check_cycles == 0) { //save ambient temp
  330. temp_ambient = input;
  331. //SERIAL_ECHOPGM("Ambient T: ");
  332. //MYSERIAL.println(temp_ambient);
  333. safety_check_cycles++;
  334. }
  335. else if (safety_check_cycles < safety_check_cycles_count) { //delay
  336. safety_check_cycles++;
  337. }
  338. else if (safety_check_cycles == safety_check_cycles_count){ //check that temperature is rising
  339. safety_check_cycles++;
  340. //SERIAL_ECHOPGM("Time from beginning: ");
  341. //MYSERIAL.print(safety_check_cycles_count * 2);
  342. //SERIAL_ECHOPGM("s. Difference between current and ambient T: ");
  343. //MYSERIAL.println(input - temp_ambient);
  344. if (abs(input - temp_ambient) < 5.0) {
  345. temp_runaway_stop(false, (extruder<0));
  346. pid_tuning_finished = true;
  347. return;
  348. }
  349. }
  350. temp_millis = _millis();
  351. }
  352. if(((_millis() - t1) + (_millis() - t2)) > (10L*60L*1000L*2L)) {
  353. SERIAL_PROTOCOLLNPGM("PID Autotune failed! timeout");
  354. pid_tuning_finished = true;
  355. pid_cycle = 0;
  356. return;
  357. }
  358. if(pid_cycle > ncycles) {
  359. SERIAL_PROTOCOLLNPGM("PID Autotune finished! Put the last Kp, Ki and Kd constants from above into Configuration.h");
  360. pid_tuning_finished = true;
  361. pid_cycle = 0;
  362. return;
  363. }
  364. lcd_update(0);
  365. }
  366. }
  367. void updatePID()
  368. {
  369. #ifdef PIDTEMP
  370. for(int e = 0; e < EXTRUDERS; e++) {
  371. iState_sum_max[e] = PID_INTEGRAL_DRIVE_MAX / cs.Ki;
  372. }
  373. #endif
  374. #ifdef PIDTEMPBED
  375. temp_iState_max_bed = PID_INTEGRAL_DRIVE_MAX / cs.bedKi;
  376. #endif
  377. }
  378. int getHeaterPower(int heater) {
  379. if (heater<0)
  380. return soft_pwm_bed;
  381. return soft_pwm[heater];
  382. }
  383. #if (defined(EXTRUDER_0_AUTO_FAN_PIN) && EXTRUDER_0_AUTO_FAN_PIN > -1) || \
  384. (defined(EXTRUDER_1_AUTO_FAN_PIN) && EXTRUDER_1_AUTO_FAN_PIN > -1) || \
  385. (defined(EXTRUDER_2_AUTO_FAN_PIN) && EXTRUDER_2_AUTO_FAN_PIN > -1)
  386. #if defined(FAN_PIN) && FAN_PIN > -1
  387. #if EXTRUDER_0_AUTO_FAN_PIN == FAN_PIN
  388. #error "You cannot set EXTRUDER_0_AUTO_FAN_PIN equal to FAN_PIN"
  389. #endif
  390. #if EXTRUDER_1_AUTO_FAN_PIN == FAN_PIN
  391. #error "You cannot set EXTRUDER_1_AUTO_FAN_PIN equal to FAN_PIN"
  392. #endif
  393. #if EXTRUDER_2_AUTO_FAN_PIN == FAN_PIN
  394. #error "You cannot set EXTRUDER_2_AUTO_FAN_PIN equal to FAN_PIN"
  395. #endif
  396. #endif
  397. void setExtruderAutoFanState(int pin, bool state)
  398. {
  399. unsigned char newFanSpeed = (state != 0) ? EXTRUDER_AUTO_FAN_SPEED : 0;
  400. // this idiom allows both digital and PWM fan outputs (see M42 handling).
  401. pinMode(pin, OUTPUT);
  402. digitalWrite(pin, newFanSpeed);
  403. //analogWrite(pin, newFanSpeed);
  404. }
  405. #if (defined(FANCHECK) && (((defined(TACH_0) && (TACH_0 >-1)) || (defined(TACH_1) && (TACH_1 > -1)))))
  406. void countFanSpeed()
  407. {
  408. //SERIAL_ECHOPGM("edge counter 1:"); MYSERIAL.println(fan_edge_counter[1]);
  409. fan_speed[0] = (fan_edge_counter[0] * (float(250) / (_millis() - extruder_autofan_last_check)));
  410. fan_speed[1] = (fan_edge_counter[1] * (float(250) / (_millis() - extruder_autofan_last_check)));
  411. /*SERIAL_ECHOPGM("time interval: "); MYSERIAL.println(_millis() - extruder_autofan_last_check);
  412. SERIAL_ECHOPGM("extruder fan speed:"); MYSERIAL.print(fan_speed[0]); SERIAL_ECHOPGM("; edge counter:"); MYSERIAL.println(fan_edge_counter[0]);
  413. SERIAL_ECHOPGM("print fan speed:"); MYSERIAL.print(fan_speed[1]); SERIAL_ECHOPGM("; edge counter:"); MYSERIAL.println(fan_edge_counter[1]);
  414. SERIAL_ECHOLNPGM(" ");*/
  415. fan_edge_counter[0] = 0;
  416. fan_edge_counter[1] = 0;
  417. }
  418. void checkFanSpeed()
  419. {
  420. uint8_t max_print_fan_errors = 0;
  421. uint8_t max_extruder_fan_errors = 0;
  422. #ifdef FAN_SOFT_PWM
  423. max_print_fan_errors = 3; //15 seconds
  424. max_extruder_fan_errors = 2; //10seconds
  425. #else //FAN_SOFT_PWM
  426. max_print_fan_errors = 15; //15 seconds
  427. max_extruder_fan_errors = 5; //5 seconds
  428. #endif //FAN_SOFT_PWM
  429. fans_check_enabled = (eeprom_read_byte((uint8_t*)EEPROM_FAN_CHECK_ENABLED) > 0);
  430. static unsigned char fan_speed_errors[2] = { 0,0 };
  431. #if (defined(FANCHECK) && defined(TACH_0) && (TACH_0 >-1))
  432. if ((fan_speed[0] == 0) && (current_temperature[0] > EXTRUDER_AUTO_FAN_TEMPERATURE)) fan_speed_errors[0]++;
  433. else fan_speed_errors[0] = 0;
  434. #endif
  435. #if (defined(FANCHECK) && defined(TACH_1) && (TACH_1 >-1))
  436. if ((fan_speed[1] < 5) && ((blocks_queued() ? block_buffer[block_buffer_tail].fan_speed : fanSpeed) > MIN_PRINT_FAN_SPEED)) fan_speed_errors[1]++;
  437. else fan_speed_errors[1] = 0;
  438. #endif
  439. if ((fan_speed_errors[0] > max_extruder_fan_errors) && fans_check_enabled) {
  440. fan_speed_errors[0] = 0;
  441. fanSpeedError(0); //extruder fan
  442. }
  443. if ((fan_speed_errors[1] > max_print_fan_errors) && fans_check_enabled) {
  444. fan_speed_errors[1] = 0;
  445. fanSpeedError(1); //print fan
  446. }
  447. }
  448. void fanSpeedError(unsigned char _fan) {
  449. if (get_message_level() != 0 && isPrintPaused) return;
  450. //to ensure that target temp. is not set to zero in case taht we are resuming print
  451. if (card.sdprinting) {
  452. if (heating_status != 0) {
  453. lcd_print_stop();
  454. }
  455. else {
  456. lcd_pause_print();
  457. }
  458. }
  459. else {
  460. setTargetHotend0(0);
  461. SERIAL_ECHOLNPGM("// action:pause"); //for octoprint
  462. }
  463. switch (_fan) {
  464. case 0:
  465. SERIAL_ECHOLNPGM("Extruder fan speed is lower then expected");
  466. if (get_message_level() == 0) {
  467. if((eSoundMode==e_SOUND_MODE_LOUD)||(eSoundMode==e_SOUND_MODE_ONCE)||(eSoundMode==e_SOUND_MODE_SILENT))
  468. WRITE(BEEPER, HIGH);
  469. delayMicroseconds(200);
  470. WRITE(BEEPER, LOW);
  471. delayMicroseconds(100);
  472. LCD_ALERTMESSAGEPGM("Err: EXTR. FAN ERROR");
  473. }
  474. break;
  475. case 1:
  476. SERIAL_ECHOLNPGM("Print fan speed is lower then expected");
  477. if (get_message_level() == 0) {
  478. if((eSoundMode==e_SOUND_MODE_LOUD)||(eSoundMode==e_SOUND_MODE_ONCE)||(eSoundMode==e_SOUND_MODE_SILENT))
  479. WRITE(BEEPER, HIGH);
  480. delayMicroseconds(200);
  481. WRITE(BEEPER, LOW);
  482. delayMicroseconds(100);
  483. LCD_ALERTMESSAGEPGM("Err: PRINT FAN ERROR");
  484. }
  485. break;
  486. }
  487. }
  488. #endif //(defined(TACH_0) && TACH_0 >-1) || (defined(TACH_1) && TACH_1 > -1)
  489. void checkExtruderAutoFans()
  490. {
  491. uint8_t fanState = 0;
  492. // which fan pins need to be turned on?
  493. #if defined(EXTRUDER_0_AUTO_FAN_PIN) && EXTRUDER_0_AUTO_FAN_PIN > -1
  494. if (current_temperature[0] > EXTRUDER_AUTO_FAN_TEMPERATURE)
  495. fanState |= 1;
  496. #endif
  497. #if defined(EXTRUDER_1_AUTO_FAN_PIN) && EXTRUDER_1_AUTO_FAN_PIN > -1
  498. if (current_temperature[1] > EXTRUDER_AUTO_FAN_TEMPERATURE)
  499. {
  500. if (EXTRUDER_1_AUTO_FAN_PIN == EXTRUDER_0_AUTO_FAN_PIN)
  501. fanState |= 1;
  502. else
  503. fanState |= 2;
  504. }
  505. #endif
  506. #if defined(EXTRUDER_2_AUTO_FAN_PIN) && EXTRUDER_2_AUTO_FAN_PIN > -1
  507. if (current_temperature[2] > EXTRUDER_AUTO_FAN_TEMPERATURE)
  508. {
  509. if (EXTRUDER_2_AUTO_FAN_PIN == EXTRUDER_0_AUTO_FAN_PIN)
  510. fanState |= 1;
  511. else if (EXTRUDER_2_AUTO_FAN_PIN == EXTRUDER_1_AUTO_FAN_PIN)
  512. fanState |= 2;
  513. else
  514. fanState |= 4;
  515. }
  516. #endif
  517. // update extruder auto fan states
  518. #if defined(EXTRUDER_0_AUTO_FAN_PIN) && EXTRUDER_0_AUTO_FAN_PIN > -1
  519. setExtruderAutoFanState(EXTRUDER_0_AUTO_FAN_PIN, (fanState & 1) != 0);
  520. #endif
  521. #if defined(EXTRUDER_1_AUTO_FAN_PIN) && EXTRUDER_1_AUTO_FAN_PIN > -1
  522. if (EXTRUDER_1_AUTO_FAN_PIN != EXTRUDER_0_AUTO_FAN_PIN)
  523. setExtruderAutoFanState(EXTRUDER_1_AUTO_FAN_PIN, (fanState & 2) != 0);
  524. #endif
  525. #if defined(EXTRUDER_2_AUTO_FAN_PIN) && EXTRUDER_2_AUTO_FAN_PIN > -1
  526. if (EXTRUDER_2_AUTO_FAN_PIN != EXTRUDER_0_AUTO_FAN_PIN
  527. && EXTRUDER_2_AUTO_FAN_PIN != EXTRUDER_1_AUTO_FAN_PIN)
  528. setExtruderAutoFanState(EXTRUDER_2_AUTO_FAN_PIN, (fanState & 4) != 0);
  529. #endif
  530. }
  531. #endif // any extruder auto fan pins set
  532. // ready for eventually parameters adjusting
  533. void resetPID(uint8_t) // only for compiler-warning elimination (if function do nothing)
  534. //void resetPID(uint8_t extruder)
  535. {
  536. }
  537. void manage_heater()
  538. {
  539. #ifdef WATCHDOG
  540. wdt_reset();
  541. #endif //WATCHDOG
  542. float pid_input;
  543. float pid_output;
  544. if(temp_meas_ready != true) //better readability
  545. return;
  546. // more precisely - this condition partially stabilizes time interval for regulation values evaluation (@ ~ 230ms)
  547. updateTemperaturesFromRawValues();
  548. check_max_temp();
  549. check_min_temp();
  550. #ifdef TEMP_RUNAWAY_BED_HYSTERESIS
  551. temp_runaway_check(0, target_temperature_bed, current_temperature_bed, (int)soft_pwm_bed, true);
  552. #endif
  553. for(int e = 0; e < EXTRUDERS; e++)
  554. {
  555. #ifdef TEMP_RUNAWAY_EXTRUDER_HYSTERESIS
  556. temp_runaway_check(e+1, target_temperature[e], current_temperature[e], (int)soft_pwm[e], false);
  557. #endif
  558. #ifdef PIDTEMP
  559. pid_input = current_temperature[e];
  560. #ifndef PID_OPENLOOP
  561. if(target_temperature[e] == 0) {
  562. pid_output = 0;
  563. pid_reset[e] = true;
  564. } else {
  565. pid_error[e] = target_temperature[e] - pid_input;
  566. if(pid_reset[e]) {
  567. iState_sum[e] = 0.0;
  568. dTerm[e] = 0.0; // 'dState_last[e]' initial setting is not necessary (see end of if-statement)
  569. pid_reset[e] = false;
  570. }
  571. #ifndef PonM
  572. pTerm[e] = cs.Kp * pid_error[e];
  573. iState_sum[e] += pid_error[e];
  574. iState_sum[e] = constrain(iState_sum[e], iState_sum_min[e], iState_sum_max[e]);
  575. iTerm[e] = cs.Ki * iState_sum[e];
  576. // PID_K1 defined in Configuration.h in the PID settings
  577. #define K2 (1.0-PID_K1)
  578. dTerm[e] = (cs.Kd * (pid_input - dState_last[e]))*K2 + (PID_K1 * dTerm[e]); // e.g. digital filtration of derivative term changes
  579. pid_output = pTerm[e] + iTerm[e] - dTerm[e]; // subtraction due to "Derivative on Measurement" method (i.e. derivative of input instead derivative of error is used)
  580. if (pid_output > PID_MAX) {
  581. if (pid_error[e] > 0 ) iState_sum[e] -= pid_error[e]; // conditional un-integration
  582. pid_output=PID_MAX;
  583. } else if (pid_output < 0) {
  584. if (pid_error[e] < 0 ) iState_sum[e] -= pid_error[e]; // conditional un-integration
  585. pid_output=0;
  586. }
  587. #else // PonM ("Proportional on Measurement" method)
  588. iState_sum[e] += cs.Ki * pid_error[e];
  589. iState_sum[e] -= cs.Kp * (pid_input - dState_last[e]);
  590. iState_sum[e] = constrain(iState_sum[e], 0, PID_INTEGRAL_DRIVE_MAX);
  591. dTerm[e] = cs.Kd * (pid_input - dState_last[e]);
  592. pid_output = iState_sum[e] - dTerm[e]; // subtraction due to "Derivative on Measurement" method (i.e. derivative of input instead derivative of error is used)
  593. pid_output = constrain(pid_output, 0, PID_MAX);
  594. #endif // PonM
  595. }
  596. dState_last[e] = pid_input;
  597. #else
  598. pid_output = constrain(target_temperature[e], 0, PID_MAX);
  599. #endif //PID_OPENLOOP
  600. #ifdef PID_DEBUG
  601. SERIAL_ECHO_START;
  602. SERIAL_ECHO(" PID_DEBUG ");
  603. SERIAL_ECHO(e);
  604. SERIAL_ECHO(": Input ");
  605. SERIAL_ECHO(pid_input);
  606. SERIAL_ECHO(" Output ");
  607. SERIAL_ECHO(pid_output);
  608. SERIAL_ECHO(" pTerm ");
  609. SERIAL_ECHO(pTerm[e]);
  610. SERIAL_ECHO(" iTerm ");
  611. SERIAL_ECHO(iTerm[e]);
  612. SERIAL_ECHO(" dTerm ");
  613. SERIAL_ECHOLN(-dTerm[e]);
  614. #endif //PID_DEBUG
  615. #else /* PID off */
  616. pid_output = 0;
  617. if(current_temperature[e] < target_temperature[e]) {
  618. pid_output = PID_MAX;
  619. }
  620. #endif
  621. // Check if temperature is within the correct range
  622. if((current_temperature[e] < maxttemp[e]) && (target_temperature[e] != 0))
  623. {
  624. soft_pwm[e] = (int)pid_output >> 1;
  625. }
  626. else
  627. {
  628. soft_pwm[e] = 0;
  629. }
  630. #ifdef WATCH_TEMP_PERIOD
  631. if(watchmillis[e] && _millis() - watchmillis[e] > WATCH_TEMP_PERIOD)
  632. {
  633. if(degHotend(e) < watch_start_temp[e] + WATCH_TEMP_INCREASE)
  634. {
  635. setTargetHotend(0, e);
  636. LCD_MESSAGEPGM("Heating failed");
  637. SERIAL_ECHO_START;
  638. SERIAL_ECHOLN("Heating failed");
  639. }else{
  640. watchmillis[e] = 0;
  641. }
  642. }
  643. #endif
  644. #ifdef TEMP_SENSOR_1_AS_REDUNDANT
  645. if(fabs(current_temperature[0] - redundant_temperature) > MAX_REDUNDANT_TEMP_SENSOR_DIFF) {
  646. disable_heater();
  647. if(IsStopped() == false) {
  648. SERIAL_ERROR_START;
  649. SERIAL_ERRORLNPGM("Extruder switched off. Temperature difference between temp sensors is too high !");
  650. LCD_ALERTMESSAGEPGM("Err: REDUNDANT TEMP ERROR");
  651. }
  652. #ifndef BOGUS_TEMPERATURE_FAILSAFE_OVERRIDE
  653. Stop();
  654. #endif
  655. }
  656. #endif
  657. } // End extruder for loop
  658. #define FAN_CHECK_PERIOD 5000 //5s
  659. #define FAN_CHECK_DURATION 100 //100ms
  660. #ifndef DEBUG_DISABLE_FANCHECK
  661. #if (defined(EXTRUDER_0_AUTO_FAN_PIN) && EXTRUDER_0_AUTO_FAN_PIN > -1) || \
  662. (defined(EXTRUDER_1_AUTO_FAN_PIN) && EXTRUDER_1_AUTO_FAN_PIN > -1) || \
  663. (defined(EXTRUDER_2_AUTO_FAN_PIN) && EXTRUDER_2_AUTO_FAN_PIN > -1)
  664. #ifdef FAN_SOFT_PWM
  665. #ifdef FANCHECK
  666. if ((_millis() - extruder_autofan_last_check > FAN_CHECK_PERIOD) && (!fan_measuring)) {
  667. extruder_autofan_last_check = _millis();
  668. fanSpeedBckp = fanSpeedSoftPwm;
  669. if (fanSpeedSoftPwm >= MIN_PRINT_FAN_SPEED) { //if we are in rage where we are doing fan check, set full PWM range for a short time to measure fan RPM by reading tacho signal without modulation by PWM signal
  670. // printf_P(PSTR("fanSpeedSoftPwm 1: %d\n"), fanSpeedSoftPwm);
  671. fanSpeedSoftPwm = 255;
  672. }
  673. fan_measuring = true;
  674. }
  675. if ((_millis() - extruder_autofan_last_check > FAN_CHECK_DURATION) && (fan_measuring)) {
  676. countFanSpeed();
  677. checkFanSpeed();
  678. //printf_P(PSTR("fanSpeedSoftPwm 1: %d\n"), fanSpeedSoftPwm);
  679. fanSpeedSoftPwm = fanSpeedBckp;
  680. //printf_P(PSTR("fan PWM: %d; extr fanSpeed measured: %d; print fan speed measured: %d \n"), fanSpeedBckp, fan_speed[0], fan_speed[1]);
  681. extruder_autofan_last_check = _millis();
  682. fan_measuring = false;
  683. }
  684. #endif //FANCHECK
  685. checkExtruderAutoFans();
  686. #else //FAN_SOFT_PWM
  687. if(_millis() - extruder_autofan_last_check > 1000) // only need to check fan state very infrequently
  688. {
  689. #if (defined(FANCHECK) && ((defined(TACH_0) && (TACH_0 >-1)) || (defined(TACH_1) && (TACH_1 > -1))))
  690. countFanSpeed();
  691. checkFanSpeed();
  692. #endif //(defined(TACH_0) && TACH_0 >-1) || (defined(TACH_1) && TACH_1 > -1)
  693. checkExtruderAutoFans();
  694. extruder_autofan_last_check = _millis();
  695. }
  696. #endif //FAN_SOFT_PWM
  697. #endif
  698. #endif //DEBUG_DISABLE_FANCHECK
  699. #ifndef PIDTEMPBED
  700. if(_millis() - previous_millis_bed_heater < BED_CHECK_INTERVAL)
  701. return;
  702. previous_millis_bed_heater = _millis();
  703. #endif
  704. #if TEMP_SENSOR_BED != 0
  705. #ifdef PIDTEMPBED
  706. pid_input = current_temperature_bed;
  707. #ifndef PID_OPENLOOP
  708. pid_error_bed = target_temperature_bed - pid_input;
  709. pTerm_bed = cs.bedKp * pid_error_bed;
  710. temp_iState_bed += pid_error_bed;
  711. temp_iState_bed = constrain(temp_iState_bed, temp_iState_min_bed, temp_iState_max_bed);
  712. iTerm_bed = cs.bedKi * temp_iState_bed;
  713. //PID_K1 defined in Configuration.h in the PID settings
  714. #define K2 (1.0-PID_K1)
  715. dTerm_bed= (cs.bedKd * (pid_input - temp_dState_bed))*K2 + (PID_K1 * dTerm_bed);
  716. temp_dState_bed = pid_input;
  717. pid_output = pTerm_bed + iTerm_bed - dTerm_bed;
  718. if (pid_output > MAX_BED_POWER) {
  719. if (pid_error_bed > 0 ) temp_iState_bed -= pid_error_bed; // conditional un-integration
  720. pid_output=MAX_BED_POWER;
  721. } else if (pid_output < 0){
  722. if (pid_error_bed < 0 ) temp_iState_bed -= pid_error_bed; // conditional un-integration
  723. pid_output=0;
  724. }
  725. #else
  726. pid_output = constrain(target_temperature_bed, 0, MAX_BED_POWER);
  727. #endif //PID_OPENLOOP
  728. if(current_temperature_bed < BED_MAXTEMP)
  729. {
  730. soft_pwm_bed = (int)pid_output >> 1;
  731. timer02_set_pwm0(soft_pwm_bed << 1);
  732. }
  733. else {
  734. soft_pwm_bed = 0;
  735. timer02_set_pwm0(soft_pwm_bed << 1);
  736. }
  737. #elif !defined(BED_LIMIT_SWITCHING)
  738. // Check if temperature is within the correct range
  739. if(current_temperature_bed < BED_MAXTEMP)
  740. {
  741. if(current_temperature_bed >= target_temperature_bed)
  742. {
  743. soft_pwm_bed = 0;
  744. timer02_set_pwm0(soft_pwm_bed << 1);
  745. }
  746. else
  747. {
  748. soft_pwm_bed = MAX_BED_POWER>>1;
  749. timer02_set_pwm0(soft_pwm_bed << 1);
  750. }
  751. }
  752. else
  753. {
  754. soft_pwm_bed = 0;
  755. timer02_set_pwm0(soft_pwm_bed << 1);
  756. WRITE(HEATER_BED_PIN,LOW);
  757. }
  758. #else //#ifdef BED_LIMIT_SWITCHING
  759. // Check if temperature is within the correct band
  760. if(current_temperature_bed < BED_MAXTEMP)
  761. {
  762. if(current_temperature_bed > target_temperature_bed + BED_HYSTERESIS)
  763. {
  764. soft_pwm_bed = 0;
  765. timer02_set_pwm0(soft_pwm_bed << 1);
  766. }
  767. else if(current_temperature_bed <= target_temperature_bed - BED_HYSTERESIS)
  768. {
  769. soft_pwm_bed = MAX_BED_POWER>>1;
  770. timer02_set_pwm0(soft_pwm_bed << 1);
  771. }
  772. }
  773. else
  774. {
  775. soft_pwm_bed = 0;
  776. timer02_set_pwm0(soft_pwm_bed << 1);
  777. WRITE(HEATER_BED_PIN,LOW);
  778. }
  779. #endif
  780. if(target_temperature_bed==0)
  781. {
  782. soft_pwm_bed = 0;
  783. timer02_set_pwm0(soft_pwm_bed << 1);
  784. }
  785. #endif
  786. host_keepalive();
  787. }
  788. #define PGM_RD_W(x) (short)pgm_read_word(&x)
  789. // Derived from RepRap FiveD extruder::getTemperature()
  790. // For hot end temperature measurement.
  791. static float analog2temp(int raw, uint8_t e) {
  792. #ifdef TEMP_SENSOR_1_AS_REDUNDANT
  793. if(e > EXTRUDERS)
  794. #else
  795. if(e >= EXTRUDERS)
  796. #endif
  797. {
  798. SERIAL_ERROR_START;
  799. SERIAL_ERROR((int)e);
  800. SERIAL_ERRORLNPGM(" - Invalid extruder number !");
  801. kill(PSTR(""), 6);
  802. return 0.0;
  803. }
  804. #ifdef HEATER_0_USES_MAX6675
  805. if (e == 0)
  806. {
  807. return 0.25 * raw;
  808. }
  809. #endif
  810. if(heater_ttbl_map[e] != NULL)
  811. {
  812. float celsius = 0;
  813. uint8_t i;
  814. short (*tt)[][2] = (short (*)[][2])(heater_ttbl_map[e]);
  815. for (i=1; i<heater_ttbllen_map[e]; i++)
  816. {
  817. if (PGM_RD_W((*tt)[i][0]) > raw)
  818. {
  819. celsius = PGM_RD_W((*tt)[i-1][1]) +
  820. (raw - PGM_RD_W((*tt)[i-1][0])) *
  821. (float)(PGM_RD_W((*tt)[i][1]) - PGM_RD_W((*tt)[i-1][1])) /
  822. (float)(PGM_RD_W((*tt)[i][0]) - PGM_RD_W((*tt)[i-1][0]));
  823. break;
  824. }
  825. }
  826. // Overflow: Set to last value in the table
  827. if (i == heater_ttbllen_map[e]) celsius = PGM_RD_W((*tt)[i-1][1]);
  828. return celsius;
  829. }
  830. return ((raw * ((5.0 * 100.0) / 1024.0) / OVERSAMPLENR) * TEMP_SENSOR_AD595_GAIN) + TEMP_SENSOR_AD595_OFFSET;
  831. }
  832. // Derived from RepRap FiveD extruder::getTemperature()
  833. // For bed temperature measurement.
  834. static float analog2tempBed(int raw) {
  835. #ifdef BED_USES_THERMISTOR
  836. float celsius = 0;
  837. byte i;
  838. for (i=1; i<BEDTEMPTABLE_LEN; i++)
  839. {
  840. if (PGM_RD_W(BEDTEMPTABLE[i][0]) > raw)
  841. {
  842. celsius = PGM_RD_W(BEDTEMPTABLE[i-1][1]) +
  843. (raw - PGM_RD_W(BEDTEMPTABLE[i-1][0])) *
  844. (float)(PGM_RD_W(BEDTEMPTABLE[i][1]) - PGM_RD_W(BEDTEMPTABLE[i-1][1])) /
  845. (float)(PGM_RD_W(BEDTEMPTABLE[i][0]) - PGM_RD_W(BEDTEMPTABLE[i-1][0]));
  846. break;
  847. }
  848. }
  849. // Overflow: Set to last value in the table
  850. if (i == BEDTEMPTABLE_LEN) celsius = PGM_RD_W(BEDTEMPTABLE[i-1][1]);
  851. // temperature offset adjustment
  852. #ifdef BED_OFFSET
  853. float _offset = BED_OFFSET;
  854. float _offset_center = BED_OFFSET_CENTER;
  855. float _offset_start = BED_OFFSET_START;
  856. float _first_koef = (_offset / 2) / (_offset_center - _offset_start);
  857. float _second_koef = (_offset / 2) / (100 - _offset_center);
  858. if (celsius >= _offset_start && celsius <= _offset_center)
  859. {
  860. celsius = celsius + (_first_koef * (celsius - _offset_start));
  861. }
  862. else if (celsius > _offset_center && celsius <= 100)
  863. {
  864. celsius = celsius + (_first_koef * (_offset_center - _offset_start)) + ( _second_koef * ( celsius - ( 100 - _offset_center ) )) ;
  865. }
  866. else if (celsius > 100)
  867. {
  868. celsius = celsius + _offset;
  869. }
  870. #endif
  871. return celsius;
  872. #elif defined BED_USES_AD595
  873. return ((raw * ((5.0 * 100.0) / 1024.0) / OVERSAMPLENR) * TEMP_SENSOR_AD595_GAIN) + TEMP_SENSOR_AD595_OFFSET;
  874. #else
  875. return 0;
  876. #endif
  877. }
  878. #ifdef AMBIENT_THERMISTOR
  879. static float analog2tempAmbient(int raw)
  880. {
  881. float celsius = 0;
  882. byte i;
  883. for (i=1; i<AMBIENTTEMPTABLE_LEN; i++)
  884. {
  885. if (PGM_RD_W(AMBIENTTEMPTABLE[i][0]) > raw)
  886. {
  887. celsius = PGM_RD_W(AMBIENTTEMPTABLE[i-1][1]) +
  888. (raw - PGM_RD_W(AMBIENTTEMPTABLE[i-1][0])) *
  889. (float)(PGM_RD_W(AMBIENTTEMPTABLE[i][1]) - PGM_RD_W(AMBIENTTEMPTABLE[i-1][1])) /
  890. (float)(PGM_RD_W(AMBIENTTEMPTABLE[i][0]) - PGM_RD_W(AMBIENTTEMPTABLE[i-1][0]));
  891. break;
  892. }
  893. }
  894. // Overflow: Set to last value in the table
  895. if (i == AMBIENTTEMPTABLE_LEN) celsius = PGM_RD_W(AMBIENTTEMPTABLE[i-1][1]);
  896. return celsius;
  897. }
  898. #endif //AMBIENT_THERMISTOR
  899. /* Called to get the raw values into the the actual temperatures. The raw values are created in interrupt context,
  900. and this function is called from normal context as it is too slow to run in interrupts and will block the stepper routine otherwise */
  901. static void updateTemperaturesFromRawValues()
  902. {
  903. for(uint8_t e=0;e<EXTRUDERS;e++)
  904. {
  905. current_temperature[e] = analog2temp(current_temperature_raw[e], e);
  906. }
  907. #ifdef PINDA_THERMISTOR
  908. current_temperature_raw_pinda = (uint16_t)((uint32_t)current_temperature_raw_pinda * 3 + current_temperature_raw_pinda_fast) >> 2;
  909. current_temperature_pinda = analog2tempBed(current_temperature_raw_pinda);
  910. #endif
  911. #ifdef AMBIENT_THERMISTOR
  912. current_temperature_ambient = analog2tempAmbient(current_temperature_raw_ambient); //thermistor for ambient is NTCG104LH104JT1 (2000)
  913. #endif
  914. #ifdef DEBUG_HEATER_BED_SIM
  915. current_temperature_bed = target_temperature_bed;
  916. #else //DEBUG_HEATER_BED_SIM
  917. current_temperature_bed = analog2tempBed(current_temperature_bed_raw);
  918. #endif //DEBUG_HEATER_BED_SIM
  919. #ifdef TEMP_SENSOR_1_AS_REDUNDANT
  920. redundant_temperature = analog2temp(redundant_temperature_raw, 1);
  921. #endif
  922. CRITICAL_SECTION_START;
  923. temp_meas_ready = false;
  924. CRITICAL_SECTION_END;
  925. }
  926. void tp_init()
  927. {
  928. #if MB(RUMBA) && ((TEMP_SENSOR_0==-1)||(TEMP_SENSOR_1==-1)||(TEMP_SENSOR_2==-1)||(TEMP_SENSOR_BED==-1))
  929. //disable RUMBA JTAG in case the thermocouple extension is plugged on top of JTAG connector
  930. MCUCR=(1<<JTD);
  931. MCUCR=(1<<JTD);
  932. #endif
  933. // Finish init of mult extruder arrays
  934. for(int e = 0; e < EXTRUDERS; e++) {
  935. // populate with the first value
  936. maxttemp[e] = maxttemp[0];
  937. #ifdef PIDTEMP
  938. iState_sum_min[e] = 0.0;
  939. iState_sum_max[e] = PID_INTEGRAL_DRIVE_MAX / cs.Ki;
  940. #endif //PIDTEMP
  941. #ifdef PIDTEMPBED
  942. temp_iState_min_bed = 0.0;
  943. temp_iState_max_bed = PID_INTEGRAL_DRIVE_MAX / cs.bedKi;
  944. #endif //PIDTEMPBED
  945. }
  946. #if defined(HEATER_0_PIN) && (HEATER_0_PIN > -1)
  947. SET_OUTPUT(HEATER_0_PIN);
  948. #endif
  949. #if defined(HEATER_1_PIN) && (HEATER_1_PIN > -1)
  950. SET_OUTPUT(HEATER_1_PIN);
  951. #endif
  952. #if defined(HEATER_2_PIN) && (HEATER_2_PIN > -1)
  953. SET_OUTPUT(HEATER_2_PIN);
  954. #endif
  955. #if defined(HEATER_BED_PIN) && (HEATER_BED_PIN > -1)
  956. SET_OUTPUT(HEATER_BED_PIN);
  957. #endif
  958. #if defined(FAN_PIN) && (FAN_PIN > -1)
  959. SET_OUTPUT(FAN_PIN);
  960. #ifdef FAST_PWM_FAN
  961. setPwmFrequency(FAN_PIN, 1); // No prescaling. Pwm frequency = F_CPU/256/8
  962. #endif
  963. #ifdef FAN_SOFT_PWM
  964. soft_pwm_fan = fanSpeedSoftPwm / (1 << (8 - FAN_SOFT_PWM_BITS));
  965. #endif
  966. #endif
  967. #ifdef HEATER_0_USES_MAX6675
  968. #ifndef SDSUPPORT
  969. SET_OUTPUT(SCK_PIN);
  970. WRITE(SCK_PIN,0);
  971. SET_OUTPUT(MOSI_PIN);
  972. WRITE(MOSI_PIN,1);
  973. SET_INPUT(MISO_PIN);
  974. WRITE(MISO_PIN,1);
  975. #endif
  976. /* Using pinMode and digitalWrite, as that was the only way I could get it to compile */
  977. //Have to toggle SD card CS pin to low first, to enable firmware to talk with SD card
  978. pinMode(SS_PIN, OUTPUT);
  979. digitalWrite(SS_PIN,0);
  980. pinMode(MAX6675_SS, OUTPUT);
  981. digitalWrite(MAX6675_SS,1);
  982. #endif
  983. adc_init();
  984. #ifdef SYSTEM_TIMER_2
  985. timer02_init();
  986. OCR2B = 128;
  987. TIMSK2 |= (1<<OCIE2B);
  988. #else //SYSTEM_TIMER_2
  989. // Use timer0 for temperature measurement
  990. // Interleave temperature interrupt with millies interrupt
  991. OCR0B = 128;
  992. TIMSK0 |= (1<<OCIE0B);
  993. #endif //SYSTEM_TIMER_2
  994. // Wait for temperature measurement to settle
  995. _delay(250);
  996. #ifdef HEATER_0_MINTEMP
  997. minttemp[0] = HEATER_0_MINTEMP;
  998. while(analog2temp(minttemp_raw[0], 0) < HEATER_0_MINTEMP) {
  999. #if HEATER_0_RAW_LO_TEMP < HEATER_0_RAW_HI_TEMP
  1000. minttemp_raw[0] += OVERSAMPLENR;
  1001. #else
  1002. minttemp_raw[0] -= OVERSAMPLENR;
  1003. #endif
  1004. }
  1005. #endif //MINTEMP
  1006. #ifdef HEATER_0_MAXTEMP
  1007. maxttemp[0] = HEATER_0_MAXTEMP;
  1008. while(analog2temp(maxttemp_raw[0], 0) > HEATER_0_MAXTEMP) {
  1009. #if HEATER_0_RAW_LO_TEMP < HEATER_0_RAW_HI_TEMP
  1010. maxttemp_raw[0] -= OVERSAMPLENR;
  1011. #else
  1012. maxttemp_raw[0] += OVERSAMPLENR;
  1013. #endif
  1014. }
  1015. #endif //MAXTEMP
  1016. #if (EXTRUDERS > 1) && defined(HEATER_1_MINTEMP)
  1017. minttemp[1] = HEATER_1_MINTEMP;
  1018. while(analog2temp(minttemp_raw[1], 1) < HEATER_1_MINTEMP) {
  1019. #if HEATER_1_RAW_LO_TEMP < HEATER_1_RAW_HI_TEMP
  1020. minttemp_raw[1] += OVERSAMPLENR;
  1021. #else
  1022. minttemp_raw[1] -= OVERSAMPLENR;
  1023. #endif
  1024. }
  1025. #endif // MINTEMP 1
  1026. #if (EXTRUDERS > 1) && defined(HEATER_1_MAXTEMP)
  1027. maxttemp[1] = HEATER_1_MAXTEMP;
  1028. while(analog2temp(maxttemp_raw[1], 1) > HEATER_1_MAXTEMP) {
  1029. #if HEATER_1_RAW_LO_TEMP < HEATER_1_RAW_HI_TEMP
  1030. maxttemp_raw[1] -= OVERSAMPLENR;
  1031. #else
  1032. maxttemp_raw[1] += OVERSAMPLENR;
  1033. #endif
  1034. }
  1035. #endif //MAXTEMP 1
  1036. #if (EXTRUDERS > 2) && defined(HEATER_2_MINTEMP)
  1037. minttemp[2] = HEATER_2_MINTEMP;
  1038. while(analog2temp(minttemp_raw[2], 2) < HEATER_2_MINTEMP) {
  1039. #if HEATER_2_RAW_LO_TEMP < HEATER_2_RAW_HI_TEMP
  1040. minttemp_raw[2] += OVERSAMPLENR;
  1041. #else
  1042. minttemp_raw[2] -= OVERSAMPLENR;
  1043. #endif
  1044. }
  1045. #endif //MINTEMP 2
  1046. #if (EXTRUDERS > 2) && defined(HEATER_2_MAXTEMP)
  1047. maxttemp[2] = HEATER_2_MAXTEMP;
  1048. while(analog2temp(maxttemp_raw[2], 2) > HEATER_2_MAXTEMP) {
  1049. #if HEATER_2_RAW_LO_TEMP < HEATER_2_RAW_HI_TEMP
  1050. maxttemp_raw[2] -= OVERSAMPLENR;
  1051. #else
  1052. maxttemp_raw[2] += OVERSAMPLENR;
  1053. #endif
  1054. }
  1055. #endif //MAXTEMP 2
  1056. #ifdef BED_MINTEMP
  1057. /* No bed MINTEMP error implemented?!? */
  1058. while(analog2tempBed(bed_minttemp_raw) < BED_MINTEMP) {
  1059. #if HEATER_BED_RAW_LO_TEMP < HEATER_BED_RAW_HI_TEMP
  1060. bed_minttemp_raw += OVERSAMPLENR;
  1061. #else
  1062. bed_minttemp_raw -= OVERSAMPLENR;
  1063. #endif
  1064. }
  1065. #endif //BED_MINTEMP
  1066. #ifdef BED_MAXTEMP
  1067. while(analog2tempBed(bed_maxttemp_raw) > BED_MAXTEMP) {
  1068. #if HEATER_BED_RAW_LO_TEMP < HEATER_BED_RAW_HI_TEMP
  1069. bed_maxttemp_raw -= OVERSAMPLENR;
  1070. #else
  1071. bed_maxttemp_raw += OVERSAMPLENR;
  1072. #endif
  1073. }
  1074. #endif //BED_MAXTEMP
  1075. }
  1076. void setWatch()
  1077. {
  1078. #ifdef WATCH_TEMP_PERIOD
  1079. for (int e = 0; e < EXTRUDERS; e++)
  1080. {
  1081. if(degHotend(e) < degTargetHotend(e) - (WATCH_TEMP_INCREASE * 2))
  1082. {
  1083. watch_start_temp[e] = degHotend(e);
  1084. watchmillis[e] = _millis();
  1085. }
  1086. }
  1087. #endif
  1088. }
  1089. #if (defined (TEMP_RUNAWAY_BED_HYSTERESIS) && TEMP_RUNAWAY_BED_TIMEOUT > 0) || (defined (TEMP_RUNAWAY_EXTRUDER_HYSTERESIS) && TEMP_RUNAWAY_EXTRUDER_TIMEOUT > 0)
  1090. void temp_runaway_check(int _heater_id, float _target_temperature, float _current_temperature, float _output, bool _isbed)
  1091. {
  1092. float __delta;
  1093. float __hysteresis = 0;
  1094. int __timeout = 0;
  1095. bool temp_runaway_check_active = false;
  1096. static float __preheat_start[2] = { 0,0}; //currently just bed and one extruder
  1097. static int __preheat_counter[2] = { 0,0};
  1098. static int __preheat_errors[2] = { 0,0};
  1099. if (_millis() - temp_runaway_timer[_heater_id] > 2000)
  1100. {
  1101. #ifdef TEMP_RUNAWAY_BED_TIMEOUT
  1102. if (_isbed)
  1103. {
  1104. __hysteresis = TEMP_RUNAWAY_BED_HYSTERESIS;
  1105. __timeout = TEMP_RUNAWAY_BED_TIMEOUT;
  1106. }
  1107. #endif
  1108. #ifdef TEMP_RUNAWAY_EXTRUDER_TIMEOUT
  1109. if (!_isbed)
  1110. {
  1111. __hysteresis = TEMP_RUNAWAY_EXTRUDER_HYSTERESIS;
  1112. __timeout = TEMP_RUNAWAY_EXTRUDER_TIMEOUT;
  1113. }
  1114. #endif
  1115. temp_runaway_timer[_heater_id] = _millis();
  1116. if (_output == 0)
  1117. {
  1118. temp_runaway_check_active = false;
  1119. temp_runaway_error_counter[_heater_id] = 0;
  1120. }
  1121. if (temp_runaway_target[_heater_id] != _target_temperature)
  1122. {
  1123. if (_target_temperature > 0)
  1124. {
  1125. temp_runaway_status[_heater_id] = TempRunaway_PREHEAT;
  1126. temp_runaway_target[_heater_id] = _target_temperature;
  1127. __preheat_start[_heater_id] = _current_temperature;
  1128. __preheat_counter[_heater_id] = 0;
  1129. }
  1130. else
  1131. {
  1132. temp_runaway_status[_heater_id] = TempRunaway_INACTIVE;
  1133. temp_runaway_target[_heater_id] = _target_temperature;
  1134. }
  1135. }
  1136. if ((_current_temperature < _target_temperature) && (temp_runaway_status[_heater_id] == TempRunaway_PREHEAT))
  1137. {
  1138. __preheat_counter[_heater_id]++;
  1139. if (__preheat_counter[_heater_id] > ((_isbed) ? 16 : 8)) // periodicaly check if current temperature changes
  1140. {
  1141. /*SERIAL_ECHOPGM("Heater:");
  1142. MYSERIAL.print(_heater_id);
  1143. SERIAL_ECHOPGM(" T:");
  1144. MYSERIAL.print(_current_temperature);
  1145. SERIAL_ECHOPGM(" Tstart:");
  1146. MYSERIAL.print(__preheat_start[_heater_id]);
  1147. SERIAL_ECHOPGM(" delta:");
  1148. MYSERIAL.print(_current_temperature-__preheat_start[_heater_id]);*/
  1149. //-// if (_current_temperature - __preheat_start[_heater_id] < 2) {
  1150. //-// if (_current_temperature - __preheat_start[_heater_id] < ((_isbed && (_current_temperature>105.0))?0.6:2.0)) {
  1151. __delta=2.0;
  1152. if(_isbed)
  1153. {
  1154. __delta=3.0;
  1155. if(_current_temperature>90.0) __delta=2.0;
  1156. if(_current_temperature>105.0) __delta=0.6;
  1157. }
  1158. if (_current_temperature - __preheat_start[_heater_id] < __delta) {
  1159. __preheat_errors[_heater_id]++;
  1160. /*SERIAL_ECHOPGM(" Preheat errors:");
  1161. MYSERIAL.println(__preheat_errors[_heater_id]);*/
  1162. }
  1163. else {
  1164. //SERIAL_ECHOLNPGM("");
  1165. __preheat_errors[_heater_id] = 0;
  1166. }
  1167. if (__preheat_errors[_heater_id] > ((_isbed) ? 3 : 5))
  1168. {
  1169. if (farm_mode) { prusa_statistics(0); }
  1170. temp_runaway_stop(true, _isbed);
  1171. if (farm_mode) { prusa_statistics(91); }
  1172. }
  1173. __preheat_start[_heater_id] = _current_temperature;
  1174. __preheat_counter[_heater_id] = 0;
  1175. }
  1176. }
  1177. //-// if (_current_temperature >= _target_temperature && temp_runaway_status[_heater_id] == TempRunaway_PREHEAT)
  1178. if ((_current_temperature > (_target_temperature - __hysteresis)) && temp_runaway_status[_heater_id] == TempRunaway_PREHEAT)
  1179. {
  1180. /*SERIAL_ECHOPGM("Heater:");
  1181. MYSERIAL.print(_heater_id);
  1182. MYSERIAL.println(" ->tempRunaway");*/
  1183. temp_runaway_status[_heater_id] = TempRunaway_ACTIVE;
  1184. temp_runaway_check_active = false;
  1185. temp_runaway_error_counter[_heater_id] = 0;
  1186. }
  1187. if (_output > 0)
  1188. {
  1189. temp_runaway_check_active = true;
  1190. }
  1191. if (temp_runaway_check_active)
  1192. {
  1193. // we are in range
  1194. if ((_current_temperature > (_target_temperature - __hysteresis)) && (_current_temperature < (_target_temperature + __hysteresis)))
  1195. {
  1196. temp_runaway_check_active = false;
  1197. temp_runaway_error_counter[_heater_id] = 0;
  1198. }
  1199. else
  1200. {
  1201. if (temp_runaway_status[_heater_id] > TempRunaway_PREHEAT)
  1202. {
  1203. temp_runaway_error_counter[_heater_id]++;
  1204. if (temp_runaway_error_counter[_heater_id] * 2 > __timeout)
  1205. {
  1206. if (farm_mode) { prusa_statistics(0); }
  1207. temp_runaway_stop(false, _isbed);
  1208. if (farm_mode) { prusa_statistics(90); }
  1209. }
  1210. }
  1211. }
  1212. }
  1213. }
  1214. }
  1215. void temp_runaway_stop(bool isPreheat, bool isBed)
  1216. {
  1217. cancel_heatup = true;
  1218. quickStop();
  1219. if (card.sdprinting)
  1220. {
  1221. card.sdprinting = false;
  1222. card.closefile();
  1223. }
  1224. // Clean the input command queue
  1225. // This is necessary, because in command queue there can be commands which would later set heater or bed temperature.
  1226. cmdqueue_reset();
  1227. disable_heater();
  1228. disable_x();
  1229. disable_y();
  1230. disable_e0();
  1231. disable_e1();
  1232. disable_e2();
  1233. manage_heater();
  1234. lcd_update(0);
  1235. if((eSoundMode==e_SOUND_MODE_LOUD)||(eSoundMode==e_SOUND_MODE_ONCE)||(eSoundMode==e_SOUND_MODE_SILENT))
  1236. WRITE(BEEPER, HIGH);
  1237. delayMicroseconds(500);
  1238. WRITE(BEEPER, LOW);
  1239. delayMicroseconds(100);
  1240. if (isPreheat)
  1241. {
  1242. Stop();
  1243. isBed ? LCD_ALERTMESSAGEPGM("BED PREHEAT ERROR") : LCD_ALERTMESSAGEPGM("PREHEAT ERROR");
  1244. SERIAL_ERROR_START;
  1245. isBed ? SERIAL_ERRORLNPGM(" THERMAL RUNAWAY ( PREHEAT HEATBED)") : SERIAL_ERRORLNPGM(" THERMAL RUNAWAY ( PREHEAT HOTEND)");
  1246. SET_OUTPUT(EXTRUDER_0_AUTO_FAN_PIN);
  1247. SET_OUTPUT(FAN_PIN);
  1248. WRITE(EXTRUDER_0_AUTO_FAN_PIN, 1);
  1249. #ifdef FAN_SOFT_PWM
  1250. fanSpeedSoftPwm = 255;
  1251. #else //FAN_SOFT_PWM
  1252. analogWrite(FAN_PIN, 255);
  1253. #endif //FAN_SOFT_PWM
  1254. fanSpeed = 255;
  1255. delayMicroseconds(2000);
  1256. }
  1257. else
  1258. {
  1259. isBed ? LCD_ALERTMESSAGEPGM("BED THERMAL RUNAWAY") : LCD_ALERTMESSAGEPGM("THERMAL RUNAWAY");
  1260. SERIAL_ERROR_START;
  1261. isBed ? SERIAL_ERRORLNPGM(" HEATBED THERMAL RUNAWAY") : SERIAL_ERRORLNPGM(" HOTEND THERMAL RUNAWAY");
  1262. }
  1263. }
  1264. #endif
  1265. void disable_heater()
  1266. {
  1267. setAllTargetHotends(0);
  1268. setTargetBed(0);
  1269. #if defined(TEMP_0_PIN) && TEMP_0_PIN > -1
  1270. target_temperature[0]=0;
  1271. soft_pwm[0]=0;
  1272. #if defined(HEATER_0_PIN) && HEATER_0_PIN > -1
  1273. WRITE(HEATER_0_PIN,LOW);
  1274. #endif
  1275. #endif
  1276. #if defined(TEMP_1_PIN) && TEMP_1_PIN > -1 && EXTRUDERS > 1
  1277. target_temperature[1]=0;
  1278. soft_pwm[1]=0;
  1279. #if defined(HEATER_1_PIN) && HEATER_1_PIN > -1
  1280. WRITE(HEATER_1_PIN,LOW);
  1281. #endif
  1282. #endif
  1283. #if defined(TEMP_2_PIN) && TEMP_2_PIN > -1 && EXTRUDERS > 2
  1284. target_temperature[2]=0;
  1285. soft_pwm[2]=0;
  1286. #if defined(HEATER_2_PIN) && HEATER_2_PIN > -1
  1287. WRITE(HEATER_2_PIN,LOW);
  1288. #endif
  1289. #endif
  1290. #if defined(TEMP_BED_PIN) && TEMP_BED_PIN > -1
  1291. target_temperature_bed=0;
  1292. soft_pwm_bed=0;
  1293. timer02_set_pwm0(soft_pwm_bed << 1);
  1294. #if defined(HEATER_BED_PIN) && HEATER_BED_PIN > -1
  1295. WRITE(HEATER_BED_PIN,LOW);
  1296. #endif
  1297. #endif
  1298. }
  1299. void max_temp_error(uint8_t e) {
  1300. disable_heater();
  1301. if(IsStopped() == false) {
  1302. SERIAL_ERROR_START;
  1303. SERIAL_ERRORLN((int)e);
  1304. SERIAL_ERRORLNPGM(": Extruder switched off. MAXTEMP triggered !");
  1305. LCD_ALERTMESSAGEPGM("Err: MAXTEMP");
  1306. }
  1307. #ifndef BOGUS_TEMPERATURE_FAILSAFE_OVERRIDE
  1308. Stop();
  1309. #endif
  1310. SET_OUTPUT(EXTRUDER_0_AUTO_FAN_PIN);
  1311. SET_OUTPUT(FAN_PIN);
  1312. SET_OUTPUT(BEEPER);
  1313. WRITE(FAN_PIN, 1);
  1314. WRITE(EXTRUDER_0_AUTO_FAN_PIN, 1);
  1315. if((eSoundMode==e_SOUND_MODE_LOUD)||(eSoundMode==e_SOUND_MODE_ONCE)||(eSoundMode==e_SOUND_MODE_SILENT))
  1316. WRITE(BEEPER, 1);
  1317. // fanSpeed will consumed by the check_axes_activity() routine.
  1318. fanSpeed=255;
  1319. if (farm_mode) { prusa_statistics(93); }
  1320. }
  1321. void min_temp_error(uint8_t e) {
  1322. #ifdef DEBUG_DISABLE_MINTEMP
  1323. return;
  1324. #endif
  1325. //if (current_temperature_ambient < MINTEMP_MINAMBIENT) return;
  1326. disable_heater();
  1327. if(IsStopped() == false) {
  1328. SERIAL_ERROR_START;
  1329. SERIAL_ERRORLN((int)e);
  1330. SERIAL_ERRORLNPGM(": Extruder switched off. MINTEMP triggered !");
  1331. LCD_ALERTMESSAGEPGM("Err: MINTEMP");
  1332. }
  1333. #ifndef BOGUS_TEMPERATURE_FAILSAFE_OVERRIDE
  1334. Stop();
  1335. #endif
  1336. if (farm_mode) { prusa_statistics(92); }
  1337. }
  1338. void bed_max_temp_error(void) {
  1339. #if HEATER_BED_PIN > -1
  1340. WRITE(HEATER_BED_PIN, 0);
  1341. #endif
  1342. if(IsStopped() == false) {
  1343. SERIAL_ERROR_START;
  1344. SERIAL_ERRORLNPGM("Temperature heated bed switched off. MAXTEMP triggered !");
  1345. LCD_ALERTMESSAGEPGM("Err: MAXTEMP BED");
  1346. }
  1347. #ifndef BOGUS_TEMPERATURE_FAILSAFE_OVERRIDE
  1348. Stop();
  1349. #endif
  1350. }
  1351. void bed_min_temp_error(void) {
  1352. #ifdef DEBUG_DISABLE_MINTEMP
  1353. return;
  1354. #endif
  1355. //if (current_temperature_ambient < MINTEMP_MINAMBIENT) return;
  1356. #if HEATER_BED_PIN > -1
  1357. WRITE(HEATER_BED_PIN, 0);
  1358. #endif
  1359. if(IsStopped() == false) {
  1360. SERIAL_ERROR_START;
  1361. SERIAL_ERRORLNPGM("Temperature heated bed switched off. MINTEMP triggered !");
  1362. LCD_ALERTMESSAGEPGM("Err: MINTEMP BED");
  1363. }
  1364. #ifndef BOGUS_TEMPERATURE_FAILSAFE_OVERRIDE
  1365. Stop();
  1366. #endif
  1367. }
  1368. #ifdef HEATER_0_USES_MAX6675
  1369. #define MAX6675_HEAT_INTERVAL 250
  1370. long max6675_previous_millis = MAX6675_HEAT_INTERVAL;
  1371. int max6675_temp = 2000;
  1372. int read_max6675()
  1373. {
  1374. if (_millis() - max6675_previous_millis < MAX6675_HEAT_INTERVAL)
  1375. return max6675_temp;
  1376. max6675_previous_millis = _millis();
  1377. max6675_temp = 0;
  1378. #ifdef PRR
  1379. PRR &= ~(1<<PRSPI);
  1380. #elif defined PRR0
  1381. PRR0 &= ~(1<<PRSPI);
  1382. #endif
  1383. SPCR = (1<<MSTR) | (1<<SPE) | (1<<SPR0);
  1384. // enable TT_MAX6675
  1385. WRITE(MAX6675_SS, 0);
  1386. // ensure 100ns delay - a bit extra is fine
  1387. asm("nop");//50ns on 20Mhz, 62.5ns on 16Mhz
  1388. asm("nop");//50ns on 20Mhz, 62.5ns on 16Mhz
  1389. // read MSB
  1390. SPDR = 0;
  1391. for (;(SPSR & (1<<SPIF)) == 0;);
  1392. max6675_temp = SPDR;
  1393. max6675_temp <<= 8;
  1394. // read LSB
  1395. SPDR = 0;
  1396. for (;(SPSR & (1<<SPIF)) == 0;);
  1397. max6675_temp |= SPDR;
  1398. // disable TT_MAX6675
  1399. WRITE(MAX6675_SS, 1);
  1400. if (max6675_temp & 4)
  1401. {
  1402. // thermocouple open
  1403. max6675_temp = 2000;
  1404. }
  1405. else
  1406. {
  1407. max6675_temp = max6675_temp >> 3;
  1408. }
  1409. return max6675_temp;
  1410. }
  1411. #endif
  1412. extern "C" {
  1413. void adc_ready(void) //callback from adc when sampling finished
  1414. {
  1415. current_temperature_raw[0] = adc_values[ADC_PIN_IDX(TEMP_0_PIN)]; //heater
  1416. current_temperature_raw_pinda_fast = adc_values[ADC_PIN_IDX(TEMP_PINDA_PIN)];
  1417. current_temperature_bed_raw = adc_values[ADC_PIN_IDX(TEMP_BED_PIN)];
  1418. #ifdef VOLT_PWR_PIN
  1419. current_voltage_raw_pwr = adc_values[ADC_PIN_IDX(VOLT_PWR_PIN)];
  1420. #endif
  1421. #ifdef AMBIENT_THERMISTOR
  1422. current_temperature_raw_ambient = adc_values[ADC_PIN_IDX(TEMP_AMBIENT_PIN)];
  1423. #endif //AMBIENT_THERMISTOR
  1424. #ifdef VOLT_BED_PIN
  1425. current_voltage_raw_bed = adc_values[ADC_PIN_IDX(VOLT_BED_PIN)]; // 6->9
  1426. #endif
  1427. temp_meas_ready = true;
  1428. }
  1429. } // extern "C"
  1430. // Timer2 (originaly timer0) is shared with millies
  1431. #ifdef SYSTEM_TIMER_2
  1432. ISR(TIMER2_COMPB_vect)
  1433. #else //SYSTEM_TIMER_2
  1434. ISR(TIMER0_COMPB_vect)
  1435. #endif //SYSTEM_TIMER_2
  1436. {
  1437. static bool _lock = false;
  1438. if (_lock) return;
  1439. _lock = true;
  1440. asm("sei");
  1441. if (!temp_meas_ready) adc_cycle();
  1442. lcd_buttons_update();
  1443. static unsigned char pwm_count = (1 << SOFT_PWM_SCALE);
  1444. static unsigned char soft_pwm_0;
  1445. #ifdef SLOW_PWM_HEATERS
  1446. static unsigned char slow_pwm_count = 0;
  1447. static unsigned char state_heater_0 = 0;
  1448. static unsigned char state_timer_heater_0 = 0;
  1449. #endif
  1450. #if (EXTRUDERS > 1) || defined(HEATERS_PARALLEL)
  1451. static unsigned char soft_pwm_1;
  1452. #ifdef SLOW_PWM_HEATERS
  1453. static unsigned char state_heater_1 = 0;
  1454. static unsigned char state_timer_heater_1 = 0;
  1455. #endif
  1456. #endif
  1457. #if EXTRUDERS > 2
  1458. static unsigned char soft_pwm_2;
  1459. #ifdef SLOW_PWM_HEATERS
  1460. static unsigned char state_heater_2 = 0;
  1461. static unsigned char state_timer_heater_2 = 0;
  1462. #endif
  1463. #endif
  1464. #if HEATER_BED_PIN > -1
  1465. static unsigned char soft_pwm_b;
  1466. #ifdef SLOW_PWM_HEATERS
  1467. static unsigned char state_heater_b = 0;
  1468. static unsigned char state_timer_heater_b = 0;
  1469. #endif
  1470. #endif
  1471. #if defined(FILWIDTH_PIN) &&(FILWIDTH_PIN > -1)
  1472. static unsigned long raw_filwidth_value = 0; //added for filament width sensor
  1473. #endif
  1474. #ifndef SLOW_PWM_HEATERS
  1475. /*
  1476. * standard PWM modulation
  1477. */
  1478. if (pwm_count == 0)
  1479. {
  1480. soft_pwm_0 = soft_pwm[0];
  1481. if(soft_pwm_0 > 0)
  1482. {
  1483. WRITE(HEATER_0_PIN,1);
  1484. #ifdef HEATERS_PARALLEL
  1485. WRITE(HEATER_1_PIN,1);
  1486. #endif
  1487. } else WRITE(HEATER_0_PIN,0);
  1488. #if EXTRUDERS > 1
  1489. soft_pwm_1 = soft_pwm[1];
  1490. if(soft_pwm_1 > 0) WRITE(HEATER_1_PIN,1); else WRITE(HEATER_1_PIN,0);
  1491. #endif
  1492. #if EXTRUDERS > 2
  1493. soft_pwm_2 = soft_pwm[2];
  1494. if(soft_pwm_2 > 0) WRITE(HEATER_2_PIN,1); else WRITE(HEATER_2_PIN,0);
  1495. #endif
  1496. }
  1497. #if defined(HEATER_BED_PIN) && HEATER_BED_PIN > -1
  1498. if ((pwm_count & ((1 << HEATER_BED_SOFT_PWM_BITS) - 1)) == 0)
  1499. {
  1500. soft_pwm_b = soft_pwm_bed >> (7 - HEATER_BED_SOFT_PWM_BITS);
  1501. #ifndef SYSTEM_TIMER_2
  1502. if(soft_pwm_b > 0) WRITE(HEATER_BED_PIN,1); else WRITE(HEATER_BED_PIN,0);
  1503. #endif //SYSTEM_TIMER_2
  1504. }
  1505. #endif
  1506. #ifdef FAN_SOFT_PWM
  1507. if ((pwm_count & ((1 << FAN_SOFT_PWM_BITS) - 1)) == 0)
  1508. {
  1509. soft_pwm_fan = fanSpeedSoftPwm / (1 << (8 - FAN_SOFT_PWM_BITS));
  1510. if(soft_pwm_fan > 0) WRITE(FAN_PIN,1); else WRITE(FAN_PIN,0);
  1511. }
  1512. #endif
  1513. if(soft_pwm_0 < pwm_count)
  1514. {
  1515. WRITE(HEATER_0_PIN,0);
  1516. #ifdef HEATERS_PARALLEL
  1517. WRITE(HEATER_1_PIN,0);
  1518. #endif
  1519. }
  1520. #if EXTRUDERS > 1
  1521. if(soft_pwm_1 < pwm_count) WRITE(HEATER_1_PIN,0);
  1522. #endif
  1523. #if EXTRUDERS > 2
  1524. if(soft_pwm_2 < pwm_count) WRITE(HEATER_2_PIN,0);
  1525. #endif
  1526. #if defined(HEATER_BED_PIN) && HEATER_BED_PIN > -1
  1527. if (soft_pwm_b < (pwm_count & ((1 << HEATER_BED_SOFT_PWM_BITS) - 1))) WRITE(HEATER_BED_PIN,0);
  1528. #endif
  1529. #ifdef FAN_SOFT_PWM
  1530. if (soft_pwm_fan < (pwm_count & ((1 << FAN_SOFT_PWM_BITS) - 1))) WRITE(FAN_PIN,0);
  1531. #endif
  1532. pwm_count += (1 << SOFT_PWM_SCALE);
  1533. pwm_count &= 0x7f;
  1534. #else //ifndef SLOW_PWM_HEATERS
  1535. /*
  1536. * SLOW PWM HEATERS
  1537. *
  1538. * for heaters drived by relay
  1539. */
  1540. #ifndef MIN_STATE_TIME
  1541. #define MIN_STATE_TIME 16 // MIN_STATE_TIME * 65.5 = time in milliseconds
  1542. #endif
  1543. if (slow_pwm_count == 0) {
  1544. // EXTRUDER 0
  1545. soft_pwm_0 = soft_pwm[0];
  1546. if (soft_pwm_0 > 0) {
  1547. // turn ON heather only if the minimum time is up
  1548. if (state_timer_heater_0 == 0) {
  1549. // if change state set timer
  1550. if (state_heater_0 == 0) {
  1551. state_timer_heater_0 = MIN_STATE_TIME;
  1552. }
  1553. state_heater_0 = 1;
  1554. WRITE(HEATER_0_PIN, 1);
  1555. #ifdef HEATERS_PARALLEL
  1556. WRITE(HEATER_1_PIN, 1);
  1557. #endif
  1558. }
  1559. } else {
  1560. // turn OFF heather only if the minimum time is up
  1561. if (state_timer_heater_0 == 0) {
  1562. // if change state set timer
  1563. if (state_heater_0 == 1) {
  1564. state_timer_heater_0 = MIN_STATE_TIME;
  1565. }
  1566. state_heater_0 = 0;
  1567. WRITE(HEATER_0_PIN, 0);
  1568. #ifdef HEATERS_PARALLEL
  1569. WRITE(HEATER_1_PIN, 0);
  1570. #endif
  1571. }
  1572. }
  1573. #if EXTRUDERS > 1
  1574. // EXTRUDER 1
  1575. soft_pwm_1 = soft_pwm[1];
  1576. if (soft_pwm_1 > 0) {
  1577. // turn ON heather only if the minimum time is up
  1578. if (state_timer_heater_1 == 0) {
  1579. // if change state set timer
  1580. if (state_heater_1 == 0) {
  1581. state_timer_heater_1 = MIN_STATE_TIME;
  1582. }
  1583. state_heater_1 = 1;
  1584. WRITE(HEATER_1_PIN, 1);
  1585. }
  1586. } else {
  1587. // turn OFF heather only if the minimum time is up
  1588. if (state_timer_heater_1 == 0) {
  1589. // if change state set timer
  1590. if (state_heater_1 == 1) {
  1591. state_timer_heater_1 = MIN_STATE_TIME;
  1592. }
  1593. state_heater_1 = 0;
  1594. WRITE(HEATER_1_PIN, 0);
  1595. }
  1596. }
  1597. #endif
  1598. #if EXTRUDERS > 2
  1599. // EXTRUDER 2
  1600. soft_pwm_2 = soft_pwm[2];
  1601. if (soft_pwm_2 > 0) {
  1602. // turn ON heather only if the minimum time is up
  1603. if (state_timer_heater_2 == 0) {
  1604. // if change state set timer
  1605. if (state_heater_2 == 0) {
  1606. state_timer_heater_2 = MIN_STATE_TIME;
  1607. }
  1608. state_heater_2 = 1;
  1609. WRITE(HEATER_2_PIN, 1);
  1610. }
  1611. } else {
  1612. // turn OFF heather only if the minimum time is up
  1613. if (state_timer_heater_2 == 0) {
  1614. // if change state set timer
  1615. if (state_heater_2 == 1) {
  1616. state_timer_heater_2 = MIN_STATE_TIME;
  1617. }
  1618. state_heater_2 = 0;
  1619. WRITE(HEATER_2_PIN, 0);
  1620. }
  1621. }
  1622. #endif
  1623. #if defined(HEATER_BED_PIN) && HEATER_BED_PIN > -1
  1624. // BED
  1625. soft_pwm_b = soft_pwm_bed;
  1626. if (soft_pwm_b > 0) {
  1627. // turn ON heather only if the minimum time is up
  1628. if (state_timer_heater_b == 0) {
  1629. // if change state set timer
  1630. if (state_heater_b == 0) {
  1631. state_timer_heater_b = MIN_STATE_TIME;
  1632. }
  1633. state_heater_b = 1;
  1634. //WRITE(HEATER_BED_PIN, 1);
  1635. }
  1636. } else {
  1637. // turn OFF heather only if the minimum time is up
  1638. if (state_timer_heater_b == 0) {
  1639. // if change state set timer
  1640. if (state_heater_b == 1) {
  1641. state_timer_heater_b = MIN_STATE_TIME;
  1642. }
  1643. state_heater_b = 0;
  1644. WRITE(HEATER_BED_PIN, 0);
  1645. }
  1646. }
  1647. #endif
  1648. } // if (slow_pwm_count == 0)
  1649. // EXTRUDER 0
  1650. if (soft_pwm_0 < slow_pwm_count) {
  1651. // turn OFF heather only if the minimum time is up
  1652. if (state_timer_heater_0 == 0) {
  1653. // if change state set timer
  1654. if (state_heater_0 == 1) {
  1655. state_timer_heater_0 = MIN_STATE_TIME;
  1656. }
  1657. state_heater_0 = 0;
  1658. WRITE(HEATER_0_PIN, 0);
  1659. #ifdef HEATERS_PARALLEL
  1660. WRITE(HEATER_1_PIN, 0);
  1661. #endif
  1662. }
  1663. }
  1664. #if EXTRUDERS > 1
  1665. // EXTRUDER 1
  1666. if (soft_pwm_1 < slow_pwm_count) {
  1667. // turn OFF heather only if the minimum time is up
  1668. if (state_timer_heater_1 == 0) {
  1669. // if change state set timer
  1670. if (state_heater_1 == 1) {
  1671. state_timer_heater_1 = MIN_STATE_TIME;
  1672. }
  1673. state_heater_1 = 0;
  1674. WRITE(HEATER_1_PIN, 0);
  1675. }
  1676. }
  1677. #endif
  1678. #if EXTRUDERS > 2
  1679. // EXTRUDER 2
  1680. if (soft_pwm_2 < slow_pwm_count) {
  1681. // turn OFF heather only if the minimum time is up
  1682. if (state_timer_heater_2 == 0) {
  1683. // if change state set timer
  1684. if (state_heater_2 == 1) {
  1685. state_timer_heater_2 = MIN_STATE_TIME;
  1686. }
  1687. state_heater_2 = 0;
  1688. WRITE(HEATER_2_PIN, 0);
  1689. }
  1690. }
  1691. #endif
  1692. #if defined(HEATER_BED_PIN) && HEATER_BED_PIN > -1
  1693. // BED
  1694. if (soft_pwm_b < slow_pwm_count) {
  1695. // turn OFF heather only if the minimum time is up
  1696. if (state_timer_heater_b == 0) {
  1697. // if change state set timer
  1698. if (state_heater_b == 1) {
  1699. state_timer_heater_b = MIN_STATE_TIME;
  1700. }
  1701. state_heater_b = 0;
  1702. WRITE(HEATER_BED_PIN, 0);
  1703. }
  1704. }
  1705. #endif
  1706. #ifdef FAN_SOFT_PWM
  1707. if ((pwm_count & ((1 << FAN_SOFT_PWM_BITS) - 1)) == 0)
  1708. soft_pwm_fan = fanSpeedSoftPwm / (1 << (8 - FAN_SOFT_PWM_BITS));
  1709. if (soft_pwm_fan > 0) WRITE(FAN_PIN,1); else WRITE(FAN_PIN,0);
  1710. }
  1711. if (soft_pwm_fan < pwm_count) WRITE(FAN_PIN,0);
  1712. #endif
  1713. pwm_count += (1 << SOFT_PWM_SCALE);
  1714. pwm_count &= 0x7f;
  1715. // increment slow_pwm_count only every 64 pwm_count circa 65.5ms
  1716. if ((pwm_count % 64) == 0) {
  1717. slow_pwm_count++;
  1718. slow_pwm_count &= 0x7f;
  1719. // Extruder 0
  1720. if (state_timer_heater_0 > 0) {
  1721. state_timer_heater_0--;
  1722. }
  1723. #if EXTRUDERS > 1
  1724. // Extruder 1
  1725. if (state_timer_heater_1 > 0)
  1726. state_timer_heater_1--;
  1727. #endif
  1728. #if EXTRUDERS > 2
  1729. // Extruder 2
  1730. if (state_timer_heater_2 > 0)
  1731. state_timer_heater_2--;
  1732. #endif
  1733. #if defined(HEATER_BED_PIN) && HEATER_BED_PIN > -1
  1734. // Bed
  1735. if (state_timer_heater_b > 0)
  1736. state_timer_heater_b--;
  1737. #endif
  1738. } //if ((pwm_count % 64) == 0) {
  1739. #endif //ifndef SLOW_PWM_HEATERS
  1740. #ifdef BABYSTEPPING
  1741. for(uint8_t axis=0;axis<3;axis++)
  1742. {
  1743. int curTodo=babystepsTodo[axis]; //get rid of volatile for performance
  1744. if(curTodo>0)
  1745. {
  1746. asm("cli");
  1747. babystep(axis,/*fwd*/true);
  1748. babystepsTodo[axis]--; //less to do next time
  1749. asm("sei");
  1750. }
  1751. else
  1752. if(curTodo<0)
  1753. {
  1754. asm("cli");
  1755. babystep(axis,/*fwd*/false);
  1756. babystepsTodo[axis]++; //less to do next time
  1757. asm("sei");
  1758. }
  1759. }
  1760. #endif //BABYSTEPPING
  1761. #if (defined(FANCHECK) && defined(TACH_0) && (TACH_0 > -1))
  1762. check_fans();
  1763. #endif //(defined(TACH_0))
  1764. _lock = false;
  1765. }
  1766. void check_max_temp()
  1767. {
  1768. //heater
  1769. #if HEATER_0_RAW_LO_TEMP > HEATER_0_RAW_HI_TEMP
  1770. if (current_temperature_raw[0] <= maxttemp_raw[0]) {
  1771. #else
  1772. if (current_temperature_raw[0] >= maxttemp_raw[0]) {
  1773. #endif
  1774. max_temp_error(0);
  1775. }
  1776. //bed
  1777. #if defined(BED_MAXTEMP) && (TEMP_SENSOR_BED != 0)
  1778. #if HEATER_BED_RAW_LO_TEMP > HEATER_BED_RAW_HI_TEMP
  1779. if (current_temperature_bed_raw <= bed_maxttemp_raw) {
  1780. #else
  1781. if (current_temperature_bed_raw >= bed_maxttemp_raw) {
  1782. #endif
  1783. target_temperature_bed = 0;
  1784. bed_max_temp_error();
  1785. }
  1786. #endif
  1787. }
  1788. void check_min_temp_heater0()
  1789. {
  1790. //heater
  1791. #if HEATER_0_RAW_LO_TEMP > HEATER_0_RAW_HI_TEMP
  1792. if (current_temperature_raw[0] >= minttemp_raw[0]) {
  1793. #else
  1794. if (current_temperature_raw[0] <= minttemp_raw[0]) {
  1795. #endif
  1796. min_temp_error(0);
  1797. }
  1798. }
  1799. void check_min_temp_bed()
  1800. {
  1801. #if HEATER_BED_RAW_LO_TEMP > HEATER_BED_RAW_HI_TEMP
  1802. if (current_temperature_bed_raw >= bed_minttemp_raw) {
  1803. #else
  1804. if (current_temperature_bed_raw <= bed_minttemp_raw) {
  1805. #endif
  1806. bed_min_temp_error();
  1807. }
  1808. }
  1809. void check_min_temp()
  1810. {
  1811. static bool bCheckingOnHeater=false; // state variable, which allows to short no-checking delay (is set, when temperature is (first time) over heaterMintemp)
  1812. static bool bCheckingOnBed=false; // state variable, which allows to short no-checking delay (is set, when temperature is (first time) over bedMintemp)
  1813. #ifdef AMBIENT_THERMISTOR
  1814. if(current_temperature_raw_ambient>(OVERSAMPLENR*MINTEMP_MINAMBIENT_RAW)) // thermistor is NTC type, so operator is ">" ;-)
  1815. { // ambient temperature is low
  1816. #endif //AMBIENT_THERMISTOR
  1817. // *** 'common' part of code for MK2.5 & MK3
  1818. // * nozzle checking
  1819. if(target_temperature[active_extruder]>minttemp[active_extruder])
  1820. { // ~ nozzle heating is on
  1821. bCheckingOnHeater=bCheckingOnHeater||(current_temperature[active_extruder]>(minttemp[active_extruder]+TEMP_HYSTERESIS)); // for eventually delay cutting
  1822. if(oTimer4minTempHeater.expired(HEATER_MINTEMP_DELAY)||(!oTimer4minTempHeater.running())||bCheckingOnHeater)
  1823. {
  1824. bCheckingOnHeater=true; // not necessary
  1825. check_min_temp_heater0(); // delay is elapsed or temperature is/was over minTemp => periodical checking is active
  1826. }
  1827. }
  1828. else { // ~ nozzle heating is off
  1829. oTimer4minTempHeater.start();
  1830. bCheckingOnHeater=false;
  1831. }
  1832. // * bed checking
  1833. if(target_temperature_bed>BED_MINTEMP)
  1834. { // ~ bed heating is on
  1835. bCheckingOnBed=bCheckingOnBed||(current_temperature_bed>(BED_MINTEMP+TEMP_HYSTERESIS)); // for eventually delay cutting
  1836. if(oTimer4minTempBed.expired(BED_MINTEMP_DELAY)||(!oTimer4minTempBed.running())||bCheckingOnBed)
  1837. {
  1838. bCheckingOnBed=true; // not necessary
  1839. check_min_temp_bed(); // delay is elapsed or temperature is/was over minTemp => periodical checking is active
  1840. }
  1841. }
  1842. else { // ~ bed heating is off
  1843. oTimer4minTempBed.start();
  1844. bCheckingOnBed=false;
  1845. }
  1846. // *** end of 'common' part
  1847. #ifdef AMBIENT_THERMISTOR
  1848. }
  1849. else { // ambient temperature is standard
  1850. check_min_temp_heater0();
  1851. check_min_temp_bed();
  1852. }
  1853. #endif //AMBIENT_THERMISTOR
  1854. }
  1855. #if (defined(FANCHECK) && defined(TACH_0) && (TACH_0 > -1))
  1856. void check_fans() {
  1857. #ifdef FAN_SOFT_PWM
  1858. if (READ(TACH_0) != fan_state[0]) {
  1859. if(fan_measuring) fan_edge_counter[0] ++;
  1860. fan_state[0] = !fan_state[0];
  1861. }
  1862. #else //FAN_SOFT_PWM
  1863. if (READ(TACH_0) != fan_state[0]) {
  1864. fan_edge_counter[0] ++;
  1865. fan_state[0] = !fan_state[0];
  1866. }
  1867. #endif
  1868. //if (READ(TACH_1) != fan_state[1]) {
  1869. // fan_edge_counter[1] ++;
  1870. // fan_state[1] = !fan_state[1];
  1871. //}
  1872. }
  1873. #endif //TACH_0
  1874. #ifdef PIDTEMP
  1875. // Apply the scale factors to the PID values
  1876. float scalePID_i(float i)
  1877. {
  1878. return i*PID_dT;
  1879. }
  1880. float unscalePID_i(float i)
  1881. {
  1882. return i/PID_dT;
  1883. }
  1884. float scalePID_d(float d)
  1885. {
  1886. return d/PID_dT;
  1887. }
  1888. float unscalePID_d(float d)
  1889. {
  1890. return d*PID_dT;
  1891. }
  1892. #endif //PIDTEMP