fsensor.cpp 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583
  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 "planner.h"
  8. #include "fastio.h"
  9. #include "io_atmega2560.h"
  10. #include "cmdqueue.h"
  11. #include "ultralcd.h"
  12. #include "ConfigurationStore.h"
  13. #include "mmu.h"
  14. #include "cardreader.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. //! printing saved
  49. bool fsensor_printing_saved = false;
  50. //! enable/disable quality meassurement
  51. bool fsensor_oq_meassure_enabled = false;
  52. //! number of errors, updated in ISR
  53. uint8_t fsensor_err_cnt = 0;
  54. //! variable for accumulating step count (updated callbacks from stepper and ISR)
  55. int16_t fsensor_st_cnt = 0;
  56. //! last dy value from pat9125 sensor (used in ISR)
  57. int16_t fsensor_dy_old = 0;
  58. //! log flag: 0=log disabled, 1=log enabled
  59. uint8_t fsensor_log = 1;
  60. //! @name filament autoload variables
  61. //! @{
  62. //! autoload feature enabled
  63. bool fsensor_autoload_enabled = true;
  64. //! autoload watching enable/disable flag
  65. bool fsensor_watch_autoload = false;
  66. //
  67. uint16_t fsensor_autoload_y;
  68. //
  69. uint8_t fsensor_autoload_c;
  70. //
  71. uint32_t fsensor_autoload_last_millis;
  72. //
  73. uint8_t fsensor_autoload_sum;
  74. //! @}
  75. //! @name filament optical quality measurement variables
  76. //! @{
  77. //! Measurement enable/disable flag
  78. bool fsensor_oq_meassure = false;
  79. //! skip-chunk counter, for accurate measurement is necessary to skip first chunk...
  80. uint8_t fsensor_oq_skipchunk;
  81. //! number of samples from start of measurement
  82. uint8_t fsensor_oq_samples;
  83. //! sum of steps in positive direction movements
  84. uint16_t fsensor_oq_st_sum;
  85. //! sum of deltas in positive direction movements
  86. uint16_t fsensor_oq_yd_sum;
  87. //! sum of errors during measurement
  88. uint16_t fsensor_oq_er_sum;
  89. //! max error counter value during measurement
  90. uint8_t fsensor_oq_er_max;
  91. //! minimum delta value
  92. int16_t fsensor_oq_yd_min;
  93. //! maximum delta value
  94. int16_t fsensor_oq_yd_max;
  95. //! sum of shutter value
  96. uint16_t fsensor_oq_sh_sum;
  97. //! @}
  98. void fsensor_stop_and_save_print(void)
  99. {
  100. printf_P(PSTR("fsensor_stop_and_save_print\n"));
  101. stop_and_save_print_to_ram(0, 0); //XYZE - no change
  102. }
  103. void fsensor_restore_print_and_continue(void)
  104. {
  105. printf_P(PSTR("fsensor_restore_print_and_continue\n"));
  106. fsensor_watch_runout = true;
  107. fsensor_err_cnt = 0;
  108. restore_print_from_ram_and_continue(0); //XYZ = orig, E - no change
  109. }
  110. void fsensor_init(void)
  111. {
  112. #ifdef PAT9125
  113. uint8_t pat9125 = pat9125_init();
  114. printf_P(PSTR("PAT9125_init:%hhu\n"), pat9125);
  115. #endif //PAT9125
  116. uint8_t fsensor = eeprom_read_byte((uint8_t*)EEPROM_FSENSOR);
  117. fsensor_autoload_enabled=eeprom_read_byte((uint8_t*)EEPROM_FSENS_AUTOLOAD_ENABLED);
  118. #ifdef PAT9125
  119. uint8_t oq_meassure_enabled = eeprom_read_byte((uint8_t*)EEPROM_FSENS_OQ_MEASS_ENABLED);
  120. fsensor_oq_meassure_enabled = (oq_meassure_enabled == 1)?true:false;
  121. fsensor_chunk_len = (int16_t)(FSENSOR_CHUNK_LEN * cs.axis_steps_per_unit[E_AXIS]);
  122. if (!pat9125)
  123. {
  124. fsensor = 0; //disable sensor
  125. fsensor_not_responding = true;
  126. }
  127. else
  128. fsensor_not_responding = false;
  129. #endif //PAT9125
  130. if (fsensor)
  131. fsensor_enable();
  132. else
  133. fsensor_disable();
  134. printf_P(PSTR("FSensor %S\n"), (fsensor_enabled?PSTR("ENABLED"):PSTR("DISABLED\n")));
  135. if (check_for_ir_sensor()) ir_sensor_detected = true;
  136. }
  137. bool fsensor_enable(void)
  138. {
  139. #ifdef PAT9125
  140. if (mmu_enabled == false) { //filament sensor is pat9125, enable only if it is working
  141. uint8_t pat9125 = pat9125_init();
  142. printf_P(PSTR("PAT9125_init:%hhu\n"), pat9125);
  143. if (pat9125)
  144. fsensor_not_responding = false;
  145. else
  146. fsensor_not_responding = true;
  147. fsensor_enabled = pat9125 ? true : false;
  148. fsensor_watch_runout = true;
  149. fsensor_oq_meassure = false;
  150. fsensor_err_cnt = 0;
  151. fsensor_dy_old = 0;
  152. eeprom_update_byte((uint8_t*)EEPROM_FSENSOR, fsensor_enabled ? 0x01 : 0x00);
  153. FSensorStateMenu = fsensor_enabled ? 1 : 0;
  154. }
  155. else //filament sensor is FINDA, always enable
  156. {
  157. fsensor_enabled = true;
  158. eeprom_update_byte((uint8_t*)EEPROM_FSENSOR, 0x01);
  159. FSensorStateMenu = 1;
  160. }
  161. #else
  162. fsensor_enabled = true;
  163. eeprom_update_byte((uint8_t*)EEPROM_FSENSOR, 0x01);
  164. FSensorStateMenu = 1;
  165. #endif
  166. return fsensor_enabled;
  167. }
  168. void fsensor_disable(void)
  169. {
  170. fsensor_enabled = false;
  171. eeprom_update_byte((uint8_t*)EEPROM_FSENSOR, 0x00);
  172. FSensorStateMenu = 0;
  173. }
  174. void fsensor_autoload_set(bool State)
  175. {
  176. if (!State) fsensor_autoload_check_stop();
  177. fsensor_autoload_enabled = State;
  178. eeprom_update_byte((unsigned char *)EEPROM_FSENS_AUTOLOAD_ENABLED, fsensor_autoload_enabled);
  179. }
  180. void pciSetup(byte pin)
  181. {
  182. // !!! "digitalPinTo?????bit()" does not provide the correct results for some MCU pins
  183. *digitalPinToPCMSK(pin) |= bit (digitalPinToPCMSKbit(pin)); // enable pin
  184. PCIFR |= bit (digitalPinToPCICRbit(pin)); // clear any outstanding interrupt
  185. PCICR |= bit (digitalPinToPCICRbit(pin)); // enable interrupt for the group
  186. }
  187. void fsensor_autoload_check_start(void)
  188. {
  189. // puts_P(_N("fsensor_autoload_check_start\n"));
  190. if (!fsensor_enabled) return;
  191. if (!fsensor_autoload_enabled) return;
  192. if (fsensor_watch_autoload) return;
  193. if (!pat9125_update_y()) //update sensor
  194. {
  195. fsensor_disable();
  196. fsensor_not_responding = true;
  197. fsensor_watch_autoload = false;
  198. printf_P(ERRMSG_PAT9125_NOT_RESP, 3);
  199. return;
  200. }
  201. puts_P(_N("fsensor_autoload_check_start - autoload ENABLED\n"));
  202. fsensor_autoload_y = pat9125_y; //save current y value
  203. fsensor_autoload_c = 0; //reset number of changes counter
  204. fsensor_autoload_sum = 0;
  205. fsensor_autoload_last_millis = millis();
  206. fsensor_watch_runout = false;
  207. fsensor_watch_autoload = true;
  208. fsensor_err_cnt = 0;
  209. }
  210. void fsensor_autoload_check_stop(void)
  211. {
  212. #ifdef PAT9125
  213. // puts_P(_N("fsensor_autoload_check_stop\n"));
  214. if (!fsensor_enabled) return;
  215. // puts_P(_N("fsensor_autoload_check_stop 1\n"));
  216. if (!fsensor_autoload_enabled) return;
  217. // puts_P(_N("fsensor_autoload_check_stop 2\n"));
  218. if (!fsensor_watch_autoload) return;
  219. puts_P(_N("fsensor_autoload_check_stop - autoload DISABLED\n"));
  220. fsensor_autoload_sum = 0;
  221. fsensor_watch_autoload = false;
  222. fsensor_watch_runout = true;
  223. fsensor_err_cnt = 0;
  224. #endif //PAT9125
  225. }
  226. bool fsensor_check_autoload(void)
  227. {
  228. if (!fsensor_enabled) return false;
  229. if (!fsensor_autoload_enabled) return false;
  230. if (ir_sensor_detected) {
  231. if (digitalRead(IR_SENSOR_PIN) == 1) {
  232. fsensor_watch_autoload = true;
  233. }
  234. else if (fsensor_watch_autoload == true) {
  235. fsensor_watch_autoload = false;
  236. return true;
  237. }
  238. }
  239. #ifdef PAT9125
  240. if (!fsensor_watch_autoload)
  241. {
  242. fsensor_autoload_check_start();
  243. return false;
  244. }
  245. #if 0
  246. uint8_t fsensor_autoload_c_old = fsensor_autoload_c;
  247. #endif
  248. if ((millis() - fsensor_autoload_last_millis) < 25) return false;
  249. fsensor_autoload_last_millis = millis();
  250. if (!pat9125_update_y()) //update sensor
  251. {
  252. fsensor_disable();
  253. fsensor_not_responding = true;
  254. printf_P(ERRMSG_PAT9125_NOT_RESP, 2);
  255. return false;
  256. }
  257. int16_t dy = pat9125_y - fsensor_autoload_y;
  258. if (dy) //? dy value is nonzero
  259. {
  260. if (dy > 0) //? delta-y value is positive (inserting)
  261. {
  262. fsensor_autoload_sum += dy;
  263. fsensor_autoload_c += 3; //increment change counter by 3
  264. }
  265. else if (fsensor_autoload_c > 1)
  266. fsensor_autoload_c -= 2; //decrement change counter by 2
  267. fsensor_autoload_y = pat9125_y; //save current value
  268. }
  269. else if (fsensor_autoload_c > 0)
  270. fsensor_autoload_c--;
  271. if (fsensor_autoload_c == 0) fsensor_autoload_sum = 0;
  272. #if 0
  273. puts_P(_N("fsensor_check_autoload\n"));
  274. if (fsensor_autoload_c != fsensor_autoload_c_old)
  275. printf_P(PSTR("fsensor_check_autoload dy=%d c=%d sum=%d\n"), dy, fsensor_autoload_c, fsensor_autoload_sum);
  276. #endif
  277. // if ((fsensor_autoload_c >= 15) && (fsensor_autoload_sum > 30))
  278. if ((fsensor_autoload_c >= 12) && (fsensor_autoload_sum > 20))
  279. {
  280. // puts_P(_N("fsensor_check_autoload = true !!!\n"));
  281. return true;
  282. }
  283. #endif //PAT9125
  284. return false;
  285. }
  286. void fsensor_oq_meassure_set(bool State)
  287. {
  288. fsensor_oq_meassure_enabled = State;
  289. eeprom_update_byte((unsigned char *)EEPROM_FSENS_OQ_MEASS_ENABLED, fsensor_oq_meassure_enabled);
  290. }
  291. void fsensor_oq_meassure_start(uint8_t skip)
  292. {
  293. if (!fsensor_enabled) return;
  294. if (!fsensor_oq_meassure_enabled) return;
  295. printf_P(PSTR("fsensor_oq_meassure_start\n"));
  296. fsensor_oq_skipchunk = skip;
  297. fsensor_oq_samples = 0;
  298. fsensor_oq_st_sum = 0;
  299. fsensor_oq_yd_sum = 0;
  300. fsensor_oq_er_sum = 0;
  301. fsensor_oq_er_max = 0;
  302. fsensor_oq_yd_min = FSENSOR_OQ_MAX_YD;
  303. fsensor_oq_yd_max = 0;
  304. fsensor_oq_sh_sum = 0;
  305. pat9125_update();
  306. pat9125_y = 0;
  307. fsensor_watch_runout = false;
  308. fsensor_oq_meassure = true;
  309. }
  310. void fsensor_oq_meassure_stop(void)
  311. {
  312. if (!fsensor_enabled) return;
  313. if (!fsensor_oq_meassure_enabled) return;
  314. printf_P(PSTR("fsensor_oq_meassure_stop, %hhu samples\n"), fsensor_oq_samples);
  315. 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);
  316. 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));
  317. fsensor_oq_meassure = false;
  318. fsensor_watch_runout = true;
  319. fsensor_err_cnt = 0;
  320. }
  321. const char _OK[] PROGMEM = "OK";
  322. const char _NG[] PROGMEM = "NG!";
  323. bool fsensor_oq_result(void)
  324. {
  325. if (!fsensor_enabled) return true;
  326. if (!fsensor_oq_meassure_enabled) return true;
  327. printf_P(_N("fsensor_oq_result\n"));
  328. bool res_er_sum = (fsensor_oq_er_sum <= FSENSOR_OQ_MAX_ES);
  329. printf_P(_N(" er_sum = %u %S\n"), fsensor_oq_er_sum, (res_er_sum?_OK:_NG));
  330. bool res_er_max = (fsensor_oq_er_max <= FSENSOR_OQ_MAX_EM);
  331. printf_P(_N(" er_max = %hhu %S\n"), fsensor_oq_er_max, (res_er_max?_OK:_NG));
  332. uint8_t yd_avg = ((uint32_t)fsensor_oq_yd_sum * fsensor_chunk_len / fsensor_oq_st_sum);
  333. bool res_yd_avg = (yd_avg >= FSENSOR_OQ_MIN_YD) && (yd_avg <= FSENSOR_OQ_MAX_YD);
  334. printf_P(_N(" yd_avg = %hhu %S\n"), yd_avg, (res_yd_avg?_OK:_NG));
  335. bool res_yd_max = (fsensor_oq_yd_max <= (yd_avg * FSENSOR_OQ_MAX_PD));
  336. printf_P(_N(" yd_max = %u %S\n"), fsensor_oq_yd_max, (res_yd_max?_OK:_NG));
  337. bool res_yd_min = (fsensor_oq_yd_min >= (yd_avg / FSENSOR_OQ_MAX_ND));
  338. printf_P(_N(" yd_min = %u %S\n"), fsensor_oq_yd_min, (res_yd_min?_OK:_NG));
  339. uint16_t yd_dev = (fsensor_oq_yd_max - yd_avg) + (yd_avg - fsensor_oq_yd_min);
  340. printf_P(_N(" yd_dev = %u\n"), yd_dev);
  341. uint16_t yd_qua = 10 * yd_avg / (yd_dev + 1);
  342. printf_P(_N(" yd_qua = %u %S\n"), yd_qua, ((yd_qua >= 8)?_OK:_NG));
  343. uint8_t sh_avg = (fsensor_oq_sh_sum / fsensor_oq_samples);
  344. bool res_sh_avg = (sh_avg <= FSENSOR_OQ_MAX_SH);
  345. if (yd_qua >= 8) res_sh_avg = true;
  346. printf_P(_N(" sh_avg = %hhu %S\n"), sh_avg, (res_sh_avg?_OK:_NG));
  347. bool res = res_er_sum && res_er_max && res_yd_avg && res_yd_max && res_yd_min && res_sh_avg;
  348. printf_P(_N("fsensor_oq_result %S\n"), (res?_OK:_NG));
  349. return res;
  350. }
  351. ISR(FSENSOR_INT_PIN_VECT)
  352. {
  353. if (mmu_enabled || ir_sensor_detected) return;
  354. if (!((fsensor_int_pin_old ^ FSENSOR_INT_PIN_PIN_REG) & FSENSOR_INT_PIN_MASK)) return;
  355. fsensor_int_pin_old = FSENSOR_INT_PIN_PIN_REG;
  356. static bool _lock = false;
  357. if (_lock) return;
  358. _lock = true;
  359. int st_cnt = fsensor_st_cnt;
  360. fsensor_st_cnt = 0;
  361. sei();
  362. uint8_t old_err_cnt = fsensor_err_cnt;
  363. uint8_t pat9125_res = fsensor_oq_meassure?pat9125_update():pat9125_update_y();
  364. if (!pat9125_res)
  365. {
  366. fsensor_disable();
  367. fsensor_not_responding = true;
  368. printf_P(ERRMSG_PAT9125_NOT_RESP, 1);
  369. }
  370. if (st_cnt != 0)
  371. { //movement
  372. if (st_cnt > 0) //positive movement
  373. {
  374. if (pat9125_y < 0)
  375. {
  376. if (fsensor_err_cnt)
  377. fsensor_err_cnt += 2;
  378. else
  379. fsensor_err_cnt++;
  380. }
  381. else if (pat9125_y > 0)
  382. {
  383. if (fsensor_err_cnt)
  384. fsensor_err_cnt--;
  385. }
  386. else //(pat9125_y == 0)
  387. if (((fsensor_dy_old <= 0) || (fsensor_err_cnt)) && (st_cnt > (fsensor_chunk_len >> 1)))
  388. fsensor_err_cnt++;
  389. if (fsensor_oq_meassure)
  390. {
  391. if (fsensor_oq_skipchunk)
  392. {
  393. fsensor_oq_skipchunk--;
  394. fsensor_err_cnt = 0;
  395. }
  396. else
  397. {
  398. if (st_cnt == fsensor_chunk_len)
  399. {
  400. if (pat9125_y > 0) if (fsensor_oq_yd_min > pat9125_y) fsensor_oq_yd_min = (fsensor_oq_yd_min + pat9125_y) / 2;
  401. if (pat9125_y >= 0) if (fsensor_oq_yd_max < pat9125_y) fsensor_oq_yd_max = (fsensor_oq_yd_max + pat9125_y) / 2;
  402. }
  403. fsensor_oq_samples++;
  404. fsensor_oq_st_sum += st_cnt;
  405. if (pat9125_y > 0) fsensor_oq_yd_sum += pat9125_y;
  406. if (fsensor_err_cnt > old_err_cnt)
  407. fsensor_oq_er_sum += (fsensor_err_cnt - old_err_cnt);
  408. if (fsensor_oq_er_max < fsensor_err_cnt)
  409. fsensor_oq_er_max = fsensor_err_cnt;
  410. fsensor_oq_sh_sum += pat9125_s;
  411. }
  412. }
  413. }
  414. else //negative movement
  415. {
  416. }
  417. }
  418. else
  419. { //no movement
  420. }
  421. #ifdef DEBUG_FSENSOR_LOG
  422. if (fsensor_log)
  423. {
  424. 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"));
  425. 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);
  426. }
  427. #endif //DEBUG_FSENSOR_LOG
  428. fsensor_dy_old = pat9125_y;
  429. pat9125_y = 0;
  430. _lock = false;
  431. return;
  432. }
  433. void fsensor_st_block_begin(block_t* bl)
  434. {
  435. if (!fsensor_enabled) return;
  436. if (((fsensor_st_cnt > 0) && (bl->direction_bits & 0x8)) ||
  437. ((fsensor_st_cnt < 0) && !(bl->direction_bits & 0x8)))
  438. {
  439. // !!! bit toggling (PINxn <- 1) (for PinChangeInterrupt) does not work for some MCU pins
  440. if (PIN_GET(FSENSOR_INT_PIN)) {PIN_VAL(FSENSOR_INT_PIN, LOW);}
  441. else {PIN_VAL(FSENSOR_INT_PIN, HIGH);}
  442. }
  443. }
  444. void fsensor_st_block_chunk(block_t* bl, int cnt)
  445. {
  446. if (!fsensor_enabled) return;
  447. fsensor_st_cnt += (bl->direction_bits & 0x8)?-cnt:cnt;
  448. if ((fsensor_st_cnt >= fsensor_chunk_len) || (fsensor_st_cnt <= -fsensor_chunk_len))
  449. {
  450. // !!! bit toggling (PINxn <- 1) (for PinChangeInterrupt) does not work for some MCU pins
  451. if (PIN_GET(FSENSOR_INT_PIN)) {PIN_VAL(FSENSOR_INT_PIN, LOW);}
  452. else {PIN_VAL(FSENSOR_INT_PIN, HIGH);}
  453. }
  454. }
  455. //! @brief filament sensor update (perform M600 on filament runout)
  456. //!
  457. //! Works only if filament sensor is enabled.
  458. //! When the filament sensor error count is larger then FSENSOR_ERR_MAX, pauses print, tries to move filament back and forth.
  459. //! If there is still no plausible signal from filament sensor plans M600 (Filament change).
  460. void fsensor_update(void)
  461. {
  462. #ifdef PAT9125
  463. if (fsensor_enabled && fsensor_watch_runout && (fsensor_err_cnt > FSENSOR_ERR_MAX))
  464. {
  465. bool autoload_enabled_tmp = fsensor_autoload_enabled;
  466. fsensor_autoload_enabled = false;
  467. bool oq_meassure_enabled_tmp = fsensor_oq_meassure_enabled;
  468. fsensor_oq_meassure_enabled = true;
  469. fsensor_stop_and_save_print();
  470. fsensor_err_cnt = 0;
  471. fsensor_oq_meassure_start(0);
  472. enquecommand_front_P((PSTR("G1 E-3 F200")));
  473. process_commands();
  474. KEEPALIVE_STATE(IN_HANDLER);
  475. cmdqueue_pop_front();
  476. st_synchronize();
  477. enquecommand_front_P((PSTR("G1 E3 F200")));
  478. process_commands();
  479. KEEPALIVE_STATE(IN_HANDLER);
  480. cmdqueue_pop_front();
  481. st_synchronize();
  482. uint8_t err_cnt = fsensor_err_cnt;
  483. fsensor_oq_meassure_stop();
  484. bool err = false;
  485. err |= (err_cnt > 1);
  486. err |= (fsensor_oq_er_sum > 2);
  487. err |= (fsensor_oq_yd_sum < (4 * FSENSOR_OQ_MIN_YD));
  488. if (!err)
  489. {
  490. printf_P(PSTR("fsensor_err_cnt = 0\n"));
  491. fsensor_restore_print_and_continue();
  492. }
  493. else
  494. {
  495. printf_P(PSTR("fsensor_update - M600\n"));
  496. eeprom_update_byte((uint8_t*)EEPROM_FERROR_COUNT, eeprom_read_byte((uint8_t*)EEPROM_FERROR_COUNT) + 1);
  497. eeprom_update_word((uint16_t*)EEPROM_FERROR_COUNT_TOT, eeprom_read_word((uint16_t*)EEPROM_FERROR_COUNT_TOT) + 1);
  498. enquecommand_front_P(PSTR("FSENSOR_RECOVER"));
  499. enquecommand_front_P((PSTR("M600")));
  500. fsensor_watch_runout = false;
  501. }
  502. fsensor_autoload_enabled = autoload_enabled_tmp;
  503. fsensor_oq_meassure_enabled = oq_meassure_enabled_tmp;
  504. }
  505. #else //PAT9125
  506. if ((digitalRead(IR_SENSOR_PIN) == 1) && CHECK_FSENSOR && fsensor_enabled && ir_sensor_detected)
  507. {
  508. fsensor_stop_and_save_print();
  509. printf_P(PSTR("fsensor_update - M600\n"));
  510. eeprom_update_byte((uint8_t*)EEPROM_FERROR_COUNT, eeprom_read_byte((uint8_t*)EEPROM_FERROR_COUNT) + 1);
  511. eeprom_update_word((uint16_t*)EEPROM_FERROR_COUNT_TOT, eeprom_read_word((uint16_t*)EEPROM_FERROR_COUNT_TOT) + 1);
  512. enquecommand_front_P(PSTR("FSENSOR_RECOVER"));
  513. enquecommand_front_P((PSTR("M600")));
  514. }
  515. #endif //PAT9125
  516. }
  517. void fsensor_setup_interrupt(void)
  518. {
  519. pinMode(FSENSOR_INT_PIN, OUTPUT);
  520. digitalWrite(FSENSOR_INT_PIN, LOW);
  521. fsensor_int_pin_old = 0;
  522. //pciSetup(FSENSOR_INT_PIN);
  523. // !!! "pciSetup()" does not provide the correct results for some MCU pins
  524. // so interrupt registers settings:
  525. FSENSOR_INT_PIN_PCMSK_REG |= bit(FSENSOR_INT_PIN_PCMSK_BIT); // enable corresponding PinChangeInterrupt (individual pin)
  526. PCIFR |= bit(FSENSOR_INT_PIN_PCICR_BIT); // clear previous occasional interrupt (set of pins)
  527. PCICR |= bit(FSENSOR_INT_PIN_PCICR_BIT); // enable corresponding PinChangeInterrupt (set of pins)
  528. }