My Marlin configs for Fabrikator Mini and CTC i3 Pro B
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

temperature.cpp 15KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562
  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. This firmware is optimized for gen6 electronics.
  23. */
  24. #include "fastio.h"
  25. #include "Configuration.h"
  26. #include "pins.h"
  27. #include "Marlin.h"
  28. #include "ultralcd.h"
  29. #include "streaming.h"
  30. #include "temperature.h"
  31. #include "watchdog.h"
  32. //===========================================================================
  33. //=============================public variables============================
  34. //===========================================================================
  35. int target_raw[3] = {0, 0, 0};
  36. int current_raw[3] = {0, 0, 0};
  37. #ifdef PIDTEMP
  38. // probably used external
  39. float HeaterPower;
  40. float pid_setpoint = 0.0;
  41. float Kp=DEFAULT_Kp;
  42. float Ki=DEFAULT_Ki;
  43. float Kd=DEFAULT_Kd;
  44. float Kc=DEFAULT_Kc;
  45. #endif //PIDTEMP
  46. //===========================================================================
  47. //=============================private variables============================
  48. //===========================================================================
  49. static bool temp_meas_ready = false;
  50. static unsigned long previous_millis_heater, previous_millis_bed_heater;
  51. #ifdef PIDTEMP
  52. //static cannot be external:
  53. static float temp_iState = 0;
  54. static float temp_dState = 0;
  55. static float pTerm;
  56. static float iTerm;
  57. static float dTerm;
  58. //int output;
  59. static float pid_error;
  60. static float temp_iState_min;
  61. static float temp_iState_max;
  62. static float pid_input;
  63. static float pid_output;
  64. static bool pid_reset;
  65. #endif //PIDTEMP
  66. #ifdef WATCHPERIOD
  67. static int watch_raw[3] = {-1000,-1000,-1000};
  68. static unsigned long watchmillis = 0;
  69. #endif //WATCHPERIOD
  70. #ifdef HEATER_0_MINTEMP
  71. static int minttemp_0 = temp2analog(HEATER_0_MINTEMP);
  72. #endif //MINTEMP
  73. #ifdef HEATER_0_MAXTEMP
  74. static int maxttemp_0 = temp2analog(HEATER_0_MAXTEMP);
  75. #endif //MAXTEMP
  76. #ifdef HEATER_1_MINTEMP
  77. static int minttemp_1 = temp2analog(HEATER_1_MINTEMP);
  78. #endif //MINTEMP
  79. #ifdef HEATER_1_MAXTEMP
  80. static int maxttemp_1 = temp2analog(HEATER_1_MAXTEMP);
  81. #endif //MAXTEMP
  82. #ifdef BED_MINTEMP
  83. static int bed_minttemp = temp2analog(BED_MINTEMP);
  84. #endif //BED_MINTEMP
  85. #ifdef BED_MAXTEMP
  86. static int bed_maxttemp = temp2analog(BED_MAXTEMP);
  87. #endif //BED_MAXTEMP
  88. //===========================================================================
  89. //=============================functions ============================
  90. //===========================================================================
  91. void manage_heater()
  92. {
  93. #ifdef USE_WATCHDOG
  94. wd_reset();
  95. #endif
  96. float pid_input;
  97. float pid_output;
  98. if(temp_meas_ready != true) //better readability
  99. return;
  100. CRITICAL_SECTION_START;
  101. temp_meas_ready = false;
  102. CRITICAL_SECTION_END;
  103. #ifdef PIDTEMP
  104. pid_input = analog2temp(current_raw[TEMPSENSOR_HOTEND_0]);
  105. #ifndef PID_OPENLOOP
  106. pid_error = pid_setpoint - pid_input;
  107. if(pid_error > 10){
  108. pid_output = PID_MAX;
  109. pid_reset = true;
  110. }
  111. else if(pid_error < -10) {
  112. pid_output = 0;
  113. pid_reset = true;
  114. }
  115. else {
  116. if(pid_reset == true) {
  117. temp_iState = 0.0;
  118. pid_reset = false;
  119. }
  120. pTerm = Kp * pid_error;
  121. temp_iState += pid_error;
  122. temp_iState = constrain(temp_iState, temp_iState_min, temp_iState_max);
  123. iTerm = Ki * temp_iState;
  124. //K1 defined in Configuration.h in the PID settings
  125. #define K2 (1.0-K1)
  126. dTerm = (Kd * (pid_input - temp_dState))*K2 + (K1 * dTerm);
  127. temp_dState = pid_input;
  128. #ifdef PID_ADD_EXTRUSION_RATE
  129. pTerm+=Kc*current_block->speed_e; //additional heating if extrusion speed is high
  130. #endif
  131. pid_output = constrain(pTerm + iTerm - dTerm, 0, PID_MAX);
  132. }
  133. #endif //PID_OPENLOOP
  134. #ifdef PID_DEBUG
  135. SERIAL_ECHOLN(" PIDDEBUG Input "<<pid_input<<" Output "<<pid_output" pTerm "<<pTerm<<" iTerm "<<iTerm<<" dTerm "<<dTerm);
  136. #endif //PID_DEBUG
  137. analogWrite(HEATER_0_PIN, pid_output);
  138. #endif //PIDTEMP
  139. #ifndef PIDTEMP
  140. if(current_raw[0] >= target_raw[0])
  141. {
  142. WRITE(HEATER_0_PIN,LOW);
  143. }
  144. else
  145. {
  146. WRITE(HEATER_0_PIN,HIGH);
  147. }
  148. #endif
  149. if(millis() - previous_millis_bed_heater < BED_CHECK_INTERVAL)
  150. return;
  151. previous_millis_bed_heater = millis();
  152. #if TEMP_1_PIN > -1
  153. if(current_raw[TEMPSENSOR_BED] >= target_raw[TEMPSENSOR_BED])
  154. {
  155. WRITE(HEATER_1_PIN,LOW);
  156. }
  157. else
  158. {
  159. WRITE(HEATER_1_PIN,HIGH);
  160. }
  161. #endif
  162. }
  163. // Takes hot end temperature value as input and returns corresponding raw value.
  164. // For a thermistor, it uses the RepRap thermistor temp table.
  165. // This is needed because PID in hydra firmware hovers around a given analog value, not a temp value.
  166. // This function is derived from inversing the logic from a portion of getTemperature() in FiveD RepRap firmware.
  167. int temp2analog(int celsius) {
  168. #ifdef HEATER_0_USES_THERMISTOR
  169. int raw = 0;
  170. byte i;
  171. for (i=1; i<NUMTEMPS_HEATER_0; i++)
  172. {
  173. if (heater_0_temptable[i][1] < celsius)
  174. {
  175. raw = heater_0_temptable[i-1][0] +
  176. (celsius - heater_0_temptable[i-1][1]) *
  177. (heater_0_temptable[i][0] - heater_0_temptable[i-1][0]) /
  178. (heater_0_temptable[i][1] - heater_0_temptable[i-1][1]);
  179. break;
  180. }
  181. }
  182. // Overflow: Set to last value in the table
  183. if (i == NUMTEMPS_HEATER_0) raw = heater_0_temptable[i-1][0];
  184. return (1023 * OVERSAMPLENR) - raw;
  185. #elif defined HEATER_0_USES_AD595
  186. return celsius * (1024.0 / (5.0 * 100.0) ) * OVERSAMPLENR;
  187. #endif
  188. }
  189. // Takes bed temperature value as input and returns corresponding raw value.
  190. // For a thermistor, it uses the RepRap thermistor temp table.
  191. // This is needed because PID in hydra firmware hovers around a given analog value, not a temp value.
  192. // This function is derived from inversing the logic from a portion of getTemperature() in FiveD RepRap firmware.
  193. int temp2analogBed(int celsius) {
  194. #ifdef BED_USES_THERMISTOR
  195. int raw = 0;
  196. byte i;
  197. for (i=1; i<BNUMTEMPS; i++)
  198. {
  199. if (bedtemptable[i][1] < celsius)
  200. {
  201. raw = bedtemptable[i-1][0] +
  202. (celsius - bedtemptable[i-1][1]) *
  203. (bedtemptable[i][0] - bedtemptable[i-1][0]) /
  204. (bedtemptable[i][1] - bedtemptable[i-1][1]);
  205. break;
  206. }
  207. }
  208. // Overflow: Set to last value in the table
  209. if (i == BNUMTEMPS) raw = bedtemptable[i-1][0];
  210. return (1023 * OVERSAMPLENR) - raw;
  211. #elif defined BED_USES_AD595
  212. return celsius * (1024.0 / (5.0 * 100.0) ) * OVERSAMPLENR;
  213. #endif
  214. }
  215. // Derived from RepRap FiveD extruder::getTemperature()
  216. // For hot end temperature measurement.
  217. float analog2temp(int raw) {
  218. #ifdef HEATER_0_USES_THERMISTOR
  219. float celsius = 0;
  220. byte i;
  221. raw = (1023 * OVERSAMPLENR) - raw;
  222. for (i=1; i<NUMTEMPS_HEATER_0; i++)
  223. {
  224. if (heater_0_temptable[i][0] > raw)
  225. {
  226. celsius = heater_0_temptable[i-1][1] +
  227. (raw - heater_0_temptable[i-1][0]) *
  228. (float)(heater_0_temptable[i][1] - heater_0_temptable[i-1][1]) /
  229. (float)(heater_0_temptable[i][0] - heater_0_temptable[i-1][0]);
  230. break;
  231. }
  232. }
  233. // Overflow: Set to last value in the table
  234. if (i == NUMTEMPS_HEATER_0) celsius = heater_0_temptable[i-1][1];
  235. return celsius;
  236. #elif defined HEATER_0_USES_AD595
  237. return raw * ((5.0 * 100.0) / 1024.0) / OVERSAMPLENR;
  238. #endif
  239. }
  240. // Derived from RepRap FiveD extruder::getTemperature()
  241. // For bed temperature measurement.
  242. float analog2tempBed(int raw) {
  243. #ifdef BED_USES_THERMISTOR
  244. int celsius = 0;
  245. byte i;
  246. raw = (1023 * OVERSAMPLENR) - raw;
  247. for (i=1; i<BNUMTEMPS; i++)
  248. {
  249. if (bedtemptable[i][0] > raw)
  250. {
  251. celsius = bedtemptable[i-1][1] +
  252. (raw - bedtemptable[i-1][0]) *
  253. (bedtemptable[i][1] - bedtemptable[i-1][1]) /
  254. (bedtemptable[i][0] - bedtemptable[i-1][0]);
  255. break;
  256. }
  257. }
  258. // Overflow: Set to last value in the table
  259. if (i == BNUMTEMPS) celsius = bedtemptable[i-1][1];
  260. return celsius;
  261. #elif defined BED_USES_AD595
  262. return raw * ((5.0 * 100.0) / 1024.0) / OVERSAMPLENR;
  263. #endif
  264. }
  265. void tp_init()
  266. {
  267. #if (HEATER_0_PIN > -1)
  268. SET_OUTPUT(HEATER_0_PIN);
  269. #endif
  270. #if (HEATER_1_PIN > -1)
  271. SET_OUTPUT(HEATER_1_PIN);
  272. #endif
  273. #if (HEATER_2_PIN > -1)
  274. SET_OUTPUT(HEATER_2_PIN);
  275. #endif
  276. #ifdef PIDTEMP
  277. temp_iState_min = 0.0;
  278. temp_iState_max = PID_INTEGRAL_DRIVE_MAX / Ki;
  279. #endif //PIDTEMP
  280. // Set analog inputs
  281. ADCSRA = 1<<ADEN | 1<<ADSC | 1<<ADIF | 0x07;
  282. // Use timer0 for temperature measurement
  283. // Interleave temperature interrupt with millies interrupt
  284. OCR0B = 128;
  285. TIMSK0 |= (1<<OCIE0B);
  286. }
  287. void setWatch()
  288. {
  289. #ifdef WATCHPERIOD
  290. if(isHeatingHotend0())
  291. {
  292. watchmillis = max(1,millis());
  293. watch_raw[TEMPSENSOR_HOTEND_0] = current_raw[TEMPSENSOR_HOTEND_0];
  294. }
  295. else
  296. {
  297. watchmillis = 0;
  298. }
  299. #endif
  300. }
  301. void disable_heater()
  302. {
  303. #if TEMP_0_PIN > -1
  304. target_raw[0]=0;
  305. #if HEATER_0_PIN > -1
  306. WRITE(HEATER_0_PIN,LOW);
  307. #endif
  308. #endif
  309. #if TEMP_1_PIN > -1
  310. target_raw[1]=0;
  311. #if HEATER_1_PIN > -1
  312. WRITE(HEATER_1_PIN,LOW);
  313. #endif
  314. #endif
  315. #if TEMP_2_PIN > -1
  316. target_raw[2]=0;
  317. #if HEATER_2_PIN > -1
  318. WRITE(HEATER_2_PIN,LOW);
  319. #endif
  320. #endif
  321. }
  322. // Timer 0 is shared with millies
  323. ISR(TIMER0_COMPB_vect)
  324. {
  325. //these variables are only accesible from the ISR, but static, so they don't loose their value
  326. static unsigned char temp_count = 0;
  327. static unsigned long raw_temp_0_value = 0;
  328. static unsigned long raw_temp_1_value = 0;
  329. static unsigned long raw_temp_2_value = 0;
  330. static unsigned char temp_state = 0;
  331. switch(temp_state) {
  332. case 0: // Prepare TEMP_0
  333. #if (TEMP_0_PIN > -1)
  334. #if TEMP_0_PIN < 8
  335. DIDR0 = 1 << TEMP_0_PIN;
  336. #else
  337. DIDR2 = 1<<(TEMP_0_PIN - 8);
  338. ADCSRB = 1<<MUX5;
  339. #endif
  340. ADMUX = ((1 << REFS0) | (TEMP_0_PIN & 0x07));
  341. ADCSRA |= 1<<ADSC; // Start conversion
  342. #endif
  343. #ifdef ULTIPANEL
  344. buttons_check();
  345. #endif
  346. temp_state = 1;
  347. break;
  348. case 1: // Measure TEMP_0
  349. #if (TEMP_0_PIN > -1)
  350. raw_temp_0_value += ADC;
  351. #endif
  352. temp_state = 2;
  353. break;
  354. case 2: // Prepare TEMP_1
  355. #if (TEMP_1_PIN > -1)
  356. #if TEMP_1_PIN < 7
  357. DIDR0 = 1<<TEMP_1_PIN;
  358. #else
  359. DIDR2 = 1<<(TEMP_1_PIN - 8);
  360. ADCSRB = 1<<MUX5;
  361. #endif
  362. ADMUX = ((1 << REFS0) | (TEMP_1_PIN & 0x07));
  363. ADCSRA |= 1<<ADSC; // Start conversion
  364. #endif
  365. #ifdef ULTIPANEL
  366. buttons_check();
  367. #endif
  368. temp_state = 3;
  369. break;
  370. case 3: // Measure TEMP_1
  371. #if (TEMP_1_PIN > -1)
  372. raw_temp_1_value += ADC;
  373. #endif
  374. temp_state = 4;
  375. break;
  376. case 4: // Prepare TEMP_2
  377. #if (TEMP_2_PIN > -1)
  378. #if TEMP_2_PIN < 7
  379. DIDR0 = 1 << TEMP_2_PIN;
  380. #else
  381. DIDR2 = 1<<(TEMP_2_PIN - 8);
  382. ADCSRB = 1<<MUX5;
  383. #endif
  384. ADMUX = ((1 << REFS0) | (TEMP_2_PIN & 0x07));
  385. ADCSRA |= 1<<ADSC; // Start conversion
  386. #endif
  387. #ifdef ULTIPANEL
  388. buttons_check();
  389. #endif
  390. temp_state = 5;
  391. break;
  392. case 5: // Measure TEMP_2
  393. #if (TEMP_2_PIN > -1)
  394. raw_temp_2_value += ADC;
  395. #endif
  396. temp_state = 0;
  397. temp_count++;
  398. break;
  399. default:
  400. SERIAL_ERRORLN("Temp measurement error!");
  401. break;
  402. }
  403. if(temp_count >= 16) // 6 ms * 16 = 96ms.
  404. {
  405. #ifdef HEATER_0_USES_AD595
  406. current_raw[0] = raw_temp_0_value;
  407. #else
  408. current_raw[0] = 16383 - raw_temp_0_value;
  409. #endif
  410. #ifdef HEATER_1_USES_AD595
  411. current_raw[2] = raw_temp_2_value;
  412. #else
  413. current_raw[2] = 16383 - raw_temp_2_value;
  414. #endif
  415. #ifdef BED_USES_AD595
  416. current_raw[1] = raw_temp_1_value;
  417. #else
  418. current_raw[1] = 16383 - raw_temp_1_value;
  419. #endif
  420. temp_meas_ready = true;
  421. temp_count = 0;
  422. raw_temp_0_value = 0;
  423. raw_temp_1_value = 0;
  424. raw_temp_2_value = 0;
  425. #ifdef HEATER_0_MAXTEMP
  426. #if (HEATER_0_PIN > -1)
  427. if(current_raw[TEMPSENSOR_HOTEND_0] >= maxttemp_0) {
  428. target_raw[TEMPSENSOR_HOTEND_0] = 0;
  429. analogWrite(HEATER_0_PIN, 0);
  430. SERIAL_ERRORLN("Temperature extruder 0 switched off. MAXTEMP triggered !!");
  431. kill();
  432. }
  433. #endif
  434. #endif
  435. #ifdef HEATER_1_MAXTEMP
  436. #if (HEATER_1_PIN > -1)
  437. if(current_raw[TEMPSENSOR_HOTEND_1] >= maxttemp_1) {
  438. target_raw[TEMPSENSOR_HOTEND_1] = 0;
  439. if(current_raw[2] >= maxttemp_1) {
  440. analogWrite(HEATER_2_PIN, 0);
  441. SERIAL_ERRORLN("Temperature extruder 1 switched off. MAXTEMP triggered !!");
  442. kill()
  443. }
  444. #endif
  445. #endif //MAXTEMP
  446. #ifdef HEATER_0_MINTEMP
  447. #if (HEATER_0_PIN > -1)
  448. if(current_raw[TEMPSENSOR_HOTEND_0] <= minttemp_0) {
  449. target_raw[TEMPSENSOR_HOTEND_0] = 0;
  450. analogWrite(HEATER_0_PIN, 0);
  451. SERIAL_ERRORLN("Temperature extruder 0 switched off. MINTEMP triggered !!");
  452. kill();
  453. }
  454. #endif
  455. #endif
  456. #ifdef HEATER_1_MINTEMP
  457. #if (HEATER_2_PIN > -1)
  458. if(current_raw[TEMPSENSOR_HOTEND_1] <= minttemp_1) {
  459. target_raw[TEMPSENSOR_HOTEND_1] = 0;
  460. analogWrite(HEATER_2_PIN, 0);
  461. SERIAL_ERRORLN("Temperature extruder 1 switched off. MINTEMP triggered !!");
  462. kill();
  463. }
  464. #endif
  465. #endif //MAXTEMP
  466. #ifdef BED_MINTEMP
  467. #if (HEATER_1_PIN > -1)
  468. if(current_raw[1] <= bed_minttemp) {
  469. target_raw[1] = 0;
  470. WRITE(HEATER_1_PIN, 0);
  471. SERIAL_ERRORLN("Temperatur heated bed switched off. MINTEMP triggered !!");
  472. kill();
  473. }
  474. #endif
  475. #endif
  476. #ifdef BED_MAXTEMP
  477. #if (HEATER_1_PIN > -1)
  478. if(current_raw[1] >= bed_maxttemp) {
  479. target_raw[1] = 0;
  480. WRITE(HEATER_1_PIN, 0);
  481. SERIAL_ERRORLN("Temperature heated bed switched off. MAXTEMP triggered !!");
  482. kill();
  483. }
  484. #endif
  485. #endif
  486. }
  487. }