fsensor.cpp 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679
  1. //! @file
  2. #include "Marlin.h"
  3. #include "fsensor.h"
  4. #include <avr/pgmspace.h>
  5. #include "pat9125.h"
  6. #include "stepper.h"
  7. #include "io_atmega2560.h"
  8. #include "cmdqueue.h"
  9. #include "ultralcd.h"
  10. #include "mmu.h"
  11. #include "cardreader.h"
  12. #include "adc.h"
  13. #include "temperature.h"
  14. #include "config.h"
  15. //! @name Basic parameters
  16. //! @{
  17. #define FSENSOR_CHUNK_LEN 0.64F //!< filament sensor chunk length 0.64mm
  18. #define FSENSOR_ERR_MAX 17 //!< filament sensor maximum error count for runout detection
  19. //! @}
  20. //! @name Optical quality measurement parameters
  21. //! @{
  22. #define FSENSOR_OQ_MAX_ES 6 //!< maximum error sum while loading (length ~64mm = 100chunks)
  23. #define FSENSOR_OQ_MAX_EM 2 //!< maximum error counter value while loading
  24. #define FSENSOR_OQ_MIN_YD 2 //!< minimum yd per chunk (applied to avg value)
  25. #define FSENSOR_OQ_MAX_YD 200 //!< maximum yd per chunk (applied to avg value)
  26. #define FSENSOR_OQ_MAX_PD 4 //!< maximum positive deviation (= yd_max/yd_avg)
  27. #define FSENSOR_OQ_MAX_ND 5 //!< maximum negative deviation (= yd_avg/yd_min)
  28. #define FSENSOR_OQ_MAX_SH 13 //!< maximum shutter value
  29. //! @}
  30. const char ERRMSG_PAT9125_NOT_RESP[] PROGMEM = "PAT9125 not responding (%d)!\n";
  31. // PJ7 can not be used (does not have PinChangeInterrupt possibility)
  32. #define FSENSOR_INT_PIN 75 //!< filament sensor interrupt pin PJ4
  33. #define FSENSOR_INT_PIN_MASK 0x10 //!< filament sensor interrupt pin mask (bit4)
  34. #define FSENSOR_INT_PIN_PIN_REG PINJ // PIN register @ PJ4
  35. #define FSENSOR_INT_PIN_VECT PCINT1_vect // PinChange ISR @ PJ4
  36. #define FSENSOR_INT_PIN_PCMSK_REG PCMSK1 // PinChangeMaskRegister @ PJ4
  37. #define FSENSOR_INT_PIN_PCMSK_BIT PCINT13 // PinChange Interrupt / PinChange Enable Mask @ PJ4
  38. #define FSENSOR_INT_PIN_PCICR_BIT PCIE1 // PinChange Interrupt Enable / Flag @ PJ4
  39. //uint8_t fsensor_int_pin = FSENSOR_INT_PIN;
  40. uint8_t fsensor_int_pin_old = 0;
  41. int16_t fsensor_chunk_len = 0;
  42. //! enabled = initialized and sampled every chunk event
  43. bool fsensor_enabled = true;
  44. //! runout watching is done in fsensor_update (called from main loop)
  45. bool fsensor_watch_runout = true;
  46. //! not responding - is set if any communication error occurred during initialization or readout
  47. bool fsensor_not_responding = false;
  48. //! enable/disable quality meassurement
  49. bool fsensor_oq_meassure_enabled = false;
  50. //! number of errors, updated in ISR
  51. uint8_t fsensor_err_cnt = 0;
  52. //! variable for accumulating step count (updated callbacks from stepper and ISR)
  53. int16_t fsensor_st_cnt = 0;
  54. //! last dy value from pat9125 sensor (used in ISR)
  55. int16_t fsensor_dy_old = 0;
  56. //! log flag: 0=log disabled, 1=log enabled
  57. uint8_t fsensor_log = 1;
  58. //! @name filament autoload variables
  59. //! @{
  60. //! autoload feature enabled
  61. bool fsensor_autoload_enabled = true;
  62. //! autoload watching enable/disable flag
  63. bool fsensor_watch_autoload = false;
  64. //
  65. uint16_t fsensor_autoload_y;
  66. //
  67. uint8_t fsensor_autoload_c;
  68. //
  69. uint32_t fsensor_autoload_last_millis;
  70. //
  71. uint8_t fsensor_autoload_sum;
  72. //! @}
  73. //! @name filament optical quality measurement variables
  74. //! @{
  75. //! Measurement enable/disable flag
  76. bool fsensor_oq_meassure = false;
  77. //! skip-chunk counter, for accurate measurement is necessary to skip first chunk...
  78. uint8_t fsensor_oq_skipchunk;
  79. //! number of samples from start of measurement
  80. uint8_t fsensor_oq_samples;
  81. //! sum of steps in positive direction movements
  82. uint16_t fsensor_oq_st_sum;
  83. //! sum of deltas in positive direction movements
  84. uint16_t fsensor_oq_yd_sum;
  85. //! sum of errors during measurement
  86. uint16_t fsensor_oq_er_sum;
  87. //! max error counter value during measurement
  88. uint8_t fsensor_oq_er_max;
  89. //! minimum delta value
  90. int16_t fsensor_oq_yd_min;
  91. //! maximum delta value
  92. int16_t fsensor_oq_yd_max;
  93. //! sum of shutter value
  94. uint16_t fsensor_oq_sh_sum;
  95. //! @}
  96. #if IR_SENSOR_ANALOG
  97. ClFsensorPCB oFsensorPCB;
  98. ClFsensorActionNA oFsensorActionNA;
  99. bool bIRsensorStateFlag=false;
  100. unsigned long nIRsensorLastTime;
  101. #endif //IR_SENSOR_ANALOG
  102. void fsensor_stop_and_save_print(void)
  103. {
  104. printf_P(PSTR("fsensor_stop_and_save_print\n"));
  105. stop_and_save_print_to_ram(0, 0); //XYZE - no change
  106. }
  107. void fsensor_restore_print_and_continue(void)
  108. {
  109. printf_P(PSTR("fsensor_restore_print_and_continue\n"));
  110. fsensor_err_cnt = 0;
  111. restore_print_from_ram_and_continue(0); //XYZ = orig, E - no change
  112. }
  113. // fsensor_checkpoint_print cuts the current print job at the current position,
  114. // allowing new instructions to be inserted in the middle
  115. void fsensor_checkpoint_print(void)
  116. {
  117. printf_P(PSTR("fsensor_checkpoint_print\n"));
  118. stop_and_save_print_to_ram(0, 0);
  119. restore_print_from_ram_and_continue(0);
  120. }
  121. void fsensor_init(void)
  122. {
  123. #ifdef PAT9125
  124. uint8_t pat9125 = pat9125_init();
  125. printf_P(PSTR("PAT9125_init:%hhu\n"), pat9125);
  126. #endif //PAT9125
  127. uint8_t fsensor = eeprom_read_byte((uint8_t*)EEPROM_FSENSOR);
  128. fsensor_autoload_enabled=eeprom_read_byte((uint8_t*)EEPROM_FSENS_AUTOLOAD_ENABLED);
  129. fsensor_not_responding = false;
  130. #ifdef PAT9125
  131. uint8_t oq_meassure_enabled = eeprom_read_byte((uint8_t*)EEPROM_FSENS_OQ_MEASS_ENABLED);
  132. fsensor_oq_meassure_enabled = (oq_meassure_enabled == 1)?true:false;
  133. fsensor_chunk_len = (int16_t)(FSENSOR_CHUNK_LEN * cs.axis_steps_per_unit[E_AXIS]);
  134. if (!pat9125)
  135. {
  136. fsensor = 0; //disable sensor
  137. fsensor_not_responding = true;
  138. }
  139. #endif //PAT9125
  140. #if IR_SENSOR_ANALOG
  141. bIRsensorStateFlag=false;
  142. oFsensorPCB=(ClFsensorPCB)eeprom_read_byte((uint8_t*)EEPROM_FSENSOR_PCB);
  143. oFsensorActionNA=(ClFsensorActionNA)eeprom_read_byte((uint8_t*)EEPROM_FSENSOR_ACTION_NA);
  144. #endif //IR_SENSOR_ANALOG
  145. if (fsensor)
  146. fsensor_enable(false); // (in this case) EEPROM update is not necessary
  147. else
  148. fsensor_disable(false); // (in this case) EEPROM update is not necessary
  149. printf_P(PSTR("FSensor %S"), (fsensor_enabled?PSTR("ENABLED"):PSTR("DISABLED")));
  150. #if IR_SENSOR_ANALOG
  151. printf_P(PSTR(" (sensor board revision: %S)\n"),(oFsensorPCB==ClFsensorPCB::_Rev03b)?PSTR("03b or newer"):PSTR("03 or older"));
  152. #else //IR_SENSOR_ANALOG
  153. printf_P(PSTR("\n"));
  154. #endif //IR_SENSOR_ANALOG
  155. if (check_for_ir_sensor()) ir_sensor_detected = true;
  156. }
  157. bool fsensor_enable(bool bUpdateEEPROM)
  158. {
  159. #ifdef PAT9125
  160. if (mmu_enabled == false) { //filament sensor is pat9125, enable only if it is working
  161. uint8_t pat9125 = pat9125_init();
  162. printf_P(PSTR("PAT9125_init:%hhu\n"), pat9125);
  163. if (pat9125)
  164. fsensor_not_responding = false;
  165. else
  166. fsensor_not_responding = true;
  167. fsensor_enabled = pat9125 ? true : false;
  168. fsensor_watch_runout = true;
  169. fsensor_oq_meassure = false;
  170. fsensor_err_cnt = 0;
  171. fsensor_dy_old = 0;
  172. eeprom_update_byte((uint8_t*)EEPROM_FSENSOR, fsensor_enabled ? 0x01 : 0x00);
  173. FSensorStateMenu = fsensor_enabled ? 1 : 0;
  174. }
  175. else //filament sensor is FINDA, always enable
  176. {
  177. fsensor_enabled = true;
  178. eeprom_update_byte((uint8_t*)EEPROM_FSENSOR, 0x01);
  179. FSensorStateMenu = 1;
  180. }
  181. #else // PAT9125
  182. #if IR_SENSOR_ANALOG
  183. if(!fsensor_IR_check())
  184. {
  185. bUpdateEEPROM=true;
  186. fsensor_enabled=false;
  187. fsensor_not_responding=true;
  188. FSensorStateMenu=0;
  189. }
  190. else {
  191. #endif //IR_SENSOR_ANALOG
  192. fsensor_enabled=true;
  193. fsensor_not_responding=false;
  194. FSensorStateMenu=1;
  195. #if IR_SENSOR_ANALOG
  196. }
  197. #endif //IR_SENSOR_ANALOG
  198. if(bUpdateEEPROM)
  199. eeprom_update_byte((uint8_t*)EEPROM_FSENSOR, FSensorStateMenu);
  200. #endif //PAT9125
  201. return fsensor_enabled;
  202. }
  203. void fsensor_disable(bool bUpdateEEPROM)
  204. {
  205. fsensor_enabled = false;
  206. FSensorStateMenu = 0;
  207. if(bUpdateEEPROM)
  208. eeprom_update_byte((uint8_t*)EEPROM_FSENSOR, 0x00);
  209. }
  210. void fsensor_autoload_set(bool State)
  211. {
  212. #ifdef PAT9125
  213. if (!State) fsensor_autoload_check_stop();
  214. #endif //PAT9125
  215. fsensor_autoload_enabled = State;
  216. eeprom_update_byte((unsigned char *)EEPROM_FSENS_AUTOLOAD_ENABLED, fsensor_autoload_enabled);
  217. }
  218. void pciSetup(byte pin)
  219. {
  220. // !!! "digitalPinTo?????bit()" does not provide the correct results for some MCU pins
  221. *digitalPinToPCMSK(pin) |= bit (digitalPinToPCMSKbit(pin)); // enable pin
  222. PCIFR |= bit (digitalPinToPCICRbit(pin)); // clear any outstanding interrupt
  223. PCICR |= bit (digitalPinToPCICRbit(pin)); // enable interrupt for the group
  224. }
  225. #ifdef PAT9125
  226. void fsensor_autoload_check_start(void)
  227. {
  228. // puts_P(_N("fsensor_autoload_check_start\n"));
  229. if (!fsensor_enabled) return;
  230. if (!fsensor_autoload_enabled) return;
  231. if (fsensor_watch_autoload) return;
  232. if (!pat9125_update()) //update sensor
  233. {
  234. fsensor_disable();
  235. fsensor_not_responding = true;
  236. fsensor_watch_autoload = false;
  237. printf_P(ERRMSG_PAT9125_NOT_RESP, 3);
  238. return;
  239. }
  240. puts_P(_N("fsensor_autoload_check_start - autoload ENABLED\n"));
  241. fsensor_autoload_y = pat9125_y; //save current y value
  242. fsensor_autoload_c = 0; //reset number of changes counter
  243. fsensor_autoload_sum = 0;
  244. fsensor_autoload_last_millis = _millis();
  245. fsensor_watch_runout = false;
  246. fsensor_watch_autoload = true;
  247. fsensor_err_cnt = 0;
  248. }
  249. void fsensor_autoload_check_stop(void)
  250. {
  251. // puts_P(_N("fsensor_autoload_check_stop\n"));
  252. if (!fsensor_enabled) return;
  253. // puts_P(_N("fsensor_autoload_check_stop 1\n"));
  254. if (!fsensor_autoload_enabled) return;
  255. // puts_P(_N("fsensor_autoload_check_stop 2\n"));
  256. if (!fsensor_watch_autoload) return;
  257. puts_P(_N("fsensor_autoload_check_stop - autoload DISABLED\n"));
  258. fsensor_autoload_sum = 0;
  259. fsensor_watch_autoload = false;
  260. fsensor_watch_runout = true;
  261. fsensor_err_cnt = 0;
  262. }
  263. #endif //PAT9125
  264. bool fsensor_check_autoload(void)
  265. {
  266. if (!fsensor_enabled) return false;
  267. if (!fsensor_autoload_enabled) return false;
  268. if (ir_sensor_detected) {
  269. if (digitalRead(IR_SENSOR_PIN) == 1) {
  270. fsensor_watch_autoload = true;
  271. }
  272. else if (fsensor_watch_autoload == true) {
  273. fsensor_watch_autoload = false;
  274. return true;
  275. }
  276. }
  277. #ifdef PAT9125
  278. if (!fsensor_watch_autoload)
  279. {
  280. fsensor_autoload_check_start();
  281. return false;
  282. }
  283. #if 0
  284. uint8_t fsensor_autoload_c_old = fsensor_autoload_c;
  285. #endif
  286. if ((_millis() - fsensor_autoload_last_millis) < 25) return false;
  287. fsensor_autoload_last_millis = _millis();
  288. if (!pat9125_update_y()) //update sensor
  289. {
  290. fsensor_disable();
  291. fsensor_not_responding = true;
  292. printf_P(ERRMSG_PAT9125_NOT_RESP, 2);
  293. return false;
  294. }
  295. int16_t dy = pat9125_y - fsensor_autoload_y;
  296. if (dy) //? dy value is nonzero
  297. {
  298. if (dy > 0) //? delta-y value is positive (inserting)
  299. {
  300. fsensor_autoload_sum += dy;
  301. fsensor_autoload_c += 3; //increment change counter by 3
  302. }
  303. else if (fsensor_autoload_c > 1)
  304. fsensor_autoload_c -= 2; //decrement change counter by 2
  305. fsensor_autoload_y = pat9125_y; //save current value
  306. }
  307. else if (fsensor_autoload_c > 0)
  308. fsensor_autoload_c--;
  309. if (fsensor_autoload_c == 0) fsensor_autoload_sum = 0;
  310. #if 0
  311. puts_P(_N("fsensor_check_autoload\n"));
  312. if (fsensor_autoload_c != fsensor_autoload_c_old)
  313. printf_P(PSTR("fsensor_check_autoload dy=%d c=%d sum=%d\n"), dy, fsensor_autoload_c, fsensor_autoload_sum);
  314. #endif
  315. // if ((fsensor_autoload_c >= 15) && (fsensor_autoload_sum > 30))
  316. if ((fsensor_autoload_c >= 12) && (fsensor_autoload_sum > 20))
  317. {
  318. // puts_P(_N("fsensor_check_autoload = true !!!\n"));
  319. return true;
  320. }
  321. #endif //PAT9125
  322. return false;
  323. }
  324. void fsensor_oq_meassure_set(bool State)
  325. {
  326. fsensor_oq_meassure_enabled = State;
  327. eeprom_update_byte((unsigned char *)EEPROM_FSENS_OQ_MEASS_ENABLED, fsensor_oq_meassure_enabled);
  328. }
  329. void fsensor_oq_meassure_start(uint8_t skip)
  330. {
  331. if (!fsensor_enabled) return;
  332. if (!fsensor_oq_meassure_enabled) return;
  333. printf_P(PSTR("fsensor_oq_meassure_start\n"));
  334. fsensor_oq_skipchunk = skip;
  335. fsensor_oq_samples = 0;
  336. fsensor_oq_st_sum = 0;
  337. fsensor_oq_yd_sum = 0;
  338. fsensor_oq_er_sum = 0;
  339. fsensor_oq_er_max = 0;
  340. fsensor_oq_yd_min = FSENSOR_OQ_MAX_YD;
  341. fsensor_oq_yd_max = 0;
  342. fsensor_oq_sh_sum = 0;
  343. pat9125_update();
  344. pat9125_y = 0;
  345. fsensor_watch_runout = false;
  346. fsensor_oq_meassure = true;
  347. }
  348. void fsensor_oq_meassure_stop(void)
  349. {
  350. if (!fsensor_enabled) return;
  351. if (!fsensor_oq_meassure_enabled) return;
  352. printf_P(PSTR("fsensor_oq_meassure_stop, %hhu samples\n"), fsensor_oq_samples);
  353. printf_P(_N(" st_sum=%u yd_sum=%u er_sum=%u er_max=%hhu\n"), fsensor_oq_st_sum, fsensor_oq_yd_sum, fsensor_oq_er_sum, fsensor_oq_er_max);
  354. printf_P(_N(" yd_min=%u yd_max=%u yd_avg=%u sh_avg=%u\n"), fsensor_oq_yd_min, fsensor_oq_yd_max, (uint16_t)((uint32_t)fsensor_oq_yd_sum * fsensor_chunk_len / fsensor_oq_st_sum), (uint16_t)(fsensor_oq_sh_sum / fsensor_oq_samples));
  355. fsensor_oq_meassure = false;
  356. fsensor_watch_runout = true;
  357. fsensor_err_cnt = 0;
  358. }
  359. const char _OK[] PROGMEM = "OK";
  360. const char _NG[] PROGMEM = "NG!";
  361. bool fsensor_oq_result(void)
  362. {
  363. if (!fsensor_enabled) return true;
  364. if (!fsensor_oq_meassure_enabled) return true;
  365. printf_P(_N("fsensor_oq_result\n"));
  366. bool res_er_sum = (fsensor_oq_er_sum <= FSENSOR_OQ_MAX_ES);
  367. printf_P(_N(" er_sum = %u %S\n"), fsensor_oq_er_sum, (res_er_sum?_OK:_NG));
  368. bool res_er_max = (fsensor_oq_er_max <= FSENSOR_OQ_MAX_EM);
  369. printf_P(_N(" er_max = %hhu %S\n"), fsensor_oq_er_max, (res_er_max?_OK:_NG));
  370. uint8_t yd_avg = ((uint32_t)fsensor_oq_yd_sum * fsensor_chunk_len / fsensor_oq_st_sum);
  371. bool res_yd_avg = (yd_avg >= FSENSOR_OQ_MIN_YD) && (yd_avg <= FSENSOR_OQ_MAX_YD);
  372. printf_P(_N(" yd_avg = %hhu %S\n"), yd_avg, (res_yd_avg?_OK:_NG));
  373. bool res_yd_max = (fsensor_oq_yd_max <= (yd_avg * FSENSOR_OQ_MAX_PD));
  374. printf_P(_N(" yd_max = %u %S\n"), fsensor_oq_yd_max, (res_yd_max?_OK:_NG));
  375. bool res_yd_min = (fsensor_oq_yd_min >= (yd_avg / FSENSOR_OQ_MAX_ND));
  376. printf_P(_N(" yd_min = %u %S\n"), fsensor_oq_yd_min, (res_yd_min?_OK:_NG));
  377. uint16_t yd_dev = (fsensor_oq_yd_max - yd_avg) + (yd_avg - fsensor_oq_yd_min);
  378. printf_P(_N(" yd_dev = %u\n"), yd_dev);
  379. uint16_t yd_qua = 10 * yd_avg / (yd_dev + 1);
  380. printf_P(_N(" yd_qua = %u %S\n"), yd_qua, ((yd_qua >= 8)?_OK:_NG));
  381. uint8_t sh_avg = (fsensor_oq_sh_sum / fsensor_oq_samples);
  382. bool res_sh_avg = (sh_avg <= FSENSOR_OQ_MAX_SH);
  383. if (yd_qua >= 8) res_sh_avg = true;
  384. printf_P(_N(" sh_avg = %hhu %S\n"), sh_avg, (res_sh_avg?_OK:_NG));
  385. bool res = res_er_sum && res_er_max && res_yd_avg && res_yd_max && res_yd_min && res_sh_avg;
  386. printf_P(_N("fsensor_oq_result %S\n"), (res?_OK:_NG));
  387. return res;
  388. }
  389. #ifdef PAT9125
  390. ISR(FSENSOR_INT_PIN_VECT)
  391. {
  392. if (mmu_enabled || ir_sensor_detected) return;
  393. if (!((fsensor_int_pin_old ^ FSENSOR_INT_PIN_PIN_REG) & FSENSOR_INT_PIN_MASK)) return;
  394. fsensor_int_pin_old = FSENSOR_INT_PIN_PIN_REG;
  395. static bool _lock = false;
  396. if (_lock) return;
  397. _lock = true;
  398. int st_cnt = fsensor_st_cnt;
  399. fsensor_st_cnt = 0;
  400. sei();
  401. uint8_t old_err_cnt = fsensor_err_cnt;
  402. uint8_t pat9125_res = fsensor_oq_meassure?pat9125_update():pat9125_update_y();
  403. if (!pat9125_res)
  404. {
  405. fsensor_disable();
  406. fsensor_not_responding = true;
  407. printf_P(ERRMSG_PAT9125_NOT_RESP, 1);
  408. }
  409. if (st_cnt != 0)
  410. { //movement
  411. if (st_cnt > 0) //positive movement
  412. {
  413. if (pat9125_y < 0)
  414. {
  415. if (fsensor_err_cnt)
  416. fsensor_err_cnt += 2;
  417. else
  418. fsensor_err_cnt++;
  419. }
  420. else if (pat9125_y > 0)
  421. {
  422. if (fsensor_err_cnt)
  423. fsensor_err_cnt--;
  424. }
  425. else //(pat9125_y == 0)
  426. if (((fsensor_dy_old <= 0) || (fsensor_err_cnt)) && (st_cnt > (fsensor_chunk_len >> 1)))
  427. fsensor_err_cnt++;
  428. if (fsensor_oq_meassure)
  429. {
  430. if (fsensor_oq_skipchunk)
  431. {
  432. fsensor_oq_skipchunk--;
  433. fsensor_err_cnt = 0;
  434. }
  435. else
  436. {
  437. if (st_cnt == fsensor_chunk_len)
  438. {
  439. if (pat9125_y > 0) if (fsensor_oq_yd_min > pat9125_y) fsensor_oq_yd_min = (fsensor_oq_yd_min + pat9125_y) / 2;
  440. if (pat9125_y >= 0) if (fsensor_oq_yd_max < pat9125_y) fsensor_oq_yd_max = (fsensor_oq_yd_max + pat9125_y) / 2;
  441. }
  442. fsensor_oq_samples++;
  443. fsensor_oq_st_sum += st_cnt;
  444. if (pat9125_y > 0) fsensor_oq_yd_sum += pat9125_y;
  445. if (fsensor_err_cnt > old_err_cnt)
  446. fsensor_oq_er_sum += (fsensor_err_cnt - old_err_cnt);
  447. if (fsensor_oq_er_max < fsensor_err_cnt)
  448. fsensor_oq_er_max = fsensor_err_cnt;
  449. fsensor_oq_sh_sum += pat9125_s;
  450. }
  451. }
  452. }
  453. else //negative movement
  454. {
  455. }
  456. }
  457. else
  458. { //no movement
  459. }
  460. #ifdef DEBUG_FSENSOR_LOG
  461. if (fsensor_log)
  462. {
  463. printf_P(_N("FSENSOR cnt=%d dy=%d err=%hhu %S\n"), st_cnt, pat9125_y, fsensor_err_cnt, (fsensor_err_cnt > old_err_cnt)?_N("NG!"):_N("OK"));
  464. if (fsensor_oq_meassure) printf_P(_N("FSENSOR st_sum=%u yd_sum=%u er_sum=%u er_max=%hhu yd_max=%u\n"), fsensor_oq_st_sum, fsensor_oq_yd_sum, fsensor_oq_er_sum, fsensor_oq_er_max, fsensor_oq_yd_max);
  465. }
  466. #endif //DEBUG_FSENSOR_LOG
  467. fsensor_dy_old = pat9125_y;
  468. pat9125_y = 0;
  469. _lock = false;
  470. return;
  471. }
  472. void fsensor_setup_interrupt(void)
  473. {
  474. pinMode(FSENSOR_INT_PIN, OUTPUT);
  475. digitalWrite(FSENSOR_INT_PIN, LOW);
  476. fsensor_int_pin_old = 0;
  477. //pciSetup(FSENSOR_INT_PIN);
  478. // !!! "pciSetup()" does not provide the correct results for some MCU pins
  479. // so interrupt registers settings:
  480. FSENSOR_INT_PIN_PCMSK_REG |= bit(FSENSOR_INT_PIN_PCMSK_BIT); // enable corresponding PinChangeInterrupt (individual pin)
  481. PCIFR |= bit(FSENSOR_INT_PIN_PCICR_BIT); // clear previous occasional interrupt (set of pins)
  482. PCICR |= bit(FSENSOR_INT_PIN_PCICR_BIT); // enable corresponding PinChangeInterrupt (set of pins)
  483. }
  484. #endif //PAT9125
  485. void fsensor_st_block_chunk(int cnt)
  486. {
  487. if (!fsensor_enabled) return;
  488. fsensor_st_cnt += cnt;
  489. if (abs(fsensor_st_cnt) >= fsensor_chunk_len)
  490. {
  491. // !!! bit toggling (PINxn <- 1) (for PinChangeInterrupt) does not work for some MCU pins
  492. if (PIN_GET(FSENSOR_INT_PIN)) {PIN_VAL(FSENSOR_INT_PIN, LOW);}
  493. else {PIN_VAL(FSENSOR_INT_PIN, HIGH);}
  494. }
  495. }
  496. //! Common code for enqueing M600 and supplemental codes into the command queue.
  497. //! Used both for the IR sensor and the PAT9125
  498. void fsensor_enque_M600(){
  499. printf_P(PSTR("fsensor_update - M600\n"));
  500. eeprom_update_byte((uint8_t*)EEPROM_FERROR_COUNT, eeprom_read_byte((uint8_t*)EEPROM_FERROR_COUNT) + 1);
  501. eeprom_update_word((uint16_t*)EEPROM_FERROR_COUNT_TOT, eeprom_read_word((uint16_t*)EEPROM_FERROR_COUNT_TOT) + 1);
  502. enquecommand_front_P((PSTR("M600")));
  503. }
  504. //! @brief filament sensor update (perform M600 on filament runout)
  505. //!
  506. //! Works only if filament sensor is enabled.
  507. //! When the filament sensor error count is larger then FSENSOR_ERR_MAX, pauses print, tries to move filament back and forth.
  508. //! If there is still no plausible signal from filament sensor plans M600 (Filament change).
  509. void fsensor_update(void)
  510. {
  511. #ifdef PAT9125
  512. if (fsensor_enabled && fsensor_watch_runout && (fsensor_err_cnt > FSENSOR_ERR_MAX))
  513. {
  514. bool autoload_enabled_tmp = fsensor_autoload_enabled;
  515. fsensor_autoload_enabled = false;
  516. bool oq_meassure_enabled_tmp = fsensor_oq_meassure_enabled;
  517. fsensor_oq_meassure_enabled = true;
  518. fsensor_stop_and_save_print();
  519. fsensor_err_cnt = 0;
  520. fsensor_oq_meassure_start(0);
  521. enquecommand_front_P((PSTR("G1 E-3 F200")));
  522. process_commands();
  523. KEEPALIVE_STATE(IN_HANDLER);
  524. cmdqueue_pop_front();
  525. st_synchronize();
  526. enquecommand_front_P((PSTR("G1 E3 F200")));
  527. process_commands();
  528. KEEPALIVE_STATE(IN_HANDLER);
  529. cmdqueue_pop_front();
  530. st_synchronize();
  531. uint8_t err_cnt = fsensor_err_cnt;
  532. fsensor_oq_meassure_stop();
  533. bool err = false;
  534. err |= (err_cnt > 1);
  535. err |= (fsensor_oq_er_sum > 2);
  536. err |= (fsensor_oq_yd_sum < (4 * FSENSOR_OQ_MIN_YD));
  537. fsensor_restore_print_and_continue();
  538. fsensor_autoload_enabled = autoload_enabled_tmp;
  539. fsensor_oq_meassure_enabled = oq_meassure_enabled_tmp;
  540. if (!err)
  541. printf_P(PSTR("fsensor_err_cnt = 0\n"));
  542. else
  543. fsensor_enque_M600();
  544. }
  545. #else //PAT9125
  546. if (CHECK_FSENSOR && fsensor_enabled && ir_sensor_detected)
  547. {
  548. if(digitalRead(IR_SENSOR_PIN))
  549. { // IR_SENSOR_PIN ~ H
  550. #if IR_SENSOR_ANALOG
  551. if(!bIRsensorStateFlag)
  552. {
  553. bIRsensorStateFlag=true;
  554. nIRsensorLastTime=_millis();
  555. }
  556. else
  557. {
  558. if((_millis()-nIRsensorLastTime)>IR_SENSOR_STEADY)
  559. {
  560. uint8_t nMUX1,nMUX2;
  561. uint16_t nADC;
  562. bIRsensorStateFlag=false;
  563. // sequence for direct data reading from AD converter
  564. DISABLE_TEMPERATURE_INTERRUPT();
  565. nMUX1=ADMUX; // ADMUX saving
  566. nMUX2=ADCSRB;
  567. adc_setmux(VOLT_IR_PIN);
  568. ADCSRA|=(1<<ADSC); // first conversion after ADMUX change discarded (preventively)
  569. while(ADCSRA&(1<<ADSC))
  570. ;
  571. ADCSRA|=(1<<ADSC); // second conversion used
  572. while(ADCSRA&(1<<ADSC))
  573. ;
  574. nADC=ADC;
  575. ADMUX=nMUX1; // ADMUX restoring
  576. ADCSRB=nMUX2;
  577. ENABLE_TEMPERATURE_INTERRUPT();
  578. // end of sequence for ...
  579. if((oFsensorPCB==ClFsensorPCB::_Rev03b)&&((nADC*OVERSAMPLENR)>((int)IRsensor_Hopen_TRESHOLD)))
  580. {
  581. fsensor_disable();
  582. fsensor_not_responding = true;
  583. printf_P(PSTR("IR sensor not responding (%d)!\n"),1);
  584. if((ClFsensorActionNA)eeprom_read_byte((uint8_t*)EEPROM_FSENSOR_ACTION_NA)==ClFsensorActionNA::_Pause)
  585. if(oFsensorActionNA==ClFsensorActionNA::_Pause)
  586. lcd_pause_print();
  587. }
  588. else
  589. {
  590. #endif //IR_SENSOR_ANALOG
  591. fsensor_checkpoint_print();
  592. fsensor_enque_M600();
  593. #if IR_SENSOR_ANALOG
  594. }
  595. }
  596. }
  597. }
  598. else
  599. { // IR_SENSOR_PIN ~ L
  600. bIRsensorStateFlag=false;
  601. #endif //IR_SENSOR_ANALOG
  602. }
  603. }
  604. #endif //PAT9125
  605. }
  606. #if IR_SENSOR_ANALOG
  607. bool fsensor_IR_check()
  608. {
  609. uint16_t volt_IR_int;
  610. bool bCheckResult;
  611. volt_IR_int=current_voltage_raw_IR;
  612. bCheckResult=(volt_IR_int<((int)IRsensor_Lmax_TRESHOLD))||(volt_IR_int>((int)IRsensor_Hmin_TRESHOLD));
  613. bCheckResult=bCheckResult&&(!((oFsensorPCB==ClFsensorPCB::_Rev03b)&&(volt_IR_int>((int)IRsensor_Hopen_TRESHOLD))));
  614. return(bCheckResult);
  615. }
  616. #endif //IR_SENSOR_ANALOG