|
@@ -0,0 +1,820 @@
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+#include "Marlin.h"
|
|
|
|
+
|
|
|
|
+#include "fsensor.h"
|
|
|
|
+#include <avr/pgmspace.h>
|
|
|
|
+#include "pat9125.h"
|
|
|
|
+#include "stepper.h"
|
|
|
|
+#include "cmdqueue.h"
|
|
|
|
+#include "ultralcd.h"
|
|
|
|
+#include "mmu2.h"
|
|
|
|
+#include "cardreader.h"
|
|
|
|
+
|
|
|
|
+#include "adc.h"
|
|
|
|
+#include "temperature.h"
|
|
|
|
+#include "config.h"
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+#define FSENSOR_CHUNK_LEN 1.25
|
|
|
|
+#define FSENSOR_ERR_MAX 4
|
|
|
|
+
|
|
|
|
+#define FSENSOR_SOFTERR_CMAX 3
|
|
|
|
+#define FSENSOR_SOFTERR_DELTA 30000
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+#define FSENSOR_OQ_MAX_ES 2
|
|
|
|
+#define FSENSOR_OQ_MIN_YD 2
|
|
|
|
+#define FSENSOR_OQ_MIN_BR 80
|
|
|
|
+#define FSENSOR_OQ_MAX_SH 10
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+const char ERRMSG_PAT9125_NOT_RESP[] PROGMEM = "PAT9125 not responding (%d)!\n";
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+#define FSENSOR_INT_PIN 75
|
|
|
|
+#define FSENSOR_INT_PIN_MASK 0x10
|
|
|
|
+#define FSENSOR_INT_PIN_PIN_REG PINJ
|
|
|
|
+#define FSENSOR_INT_PIN_VECT PCINT1_vect
|
|
|
|
+#define FSENSOR_INT_PIN_PCMSK_REG PCMSK1
|
|
|
|
+#define FSENSOR_INT_PIN_PCMSK_BIT PCINT13
|
|
|
|
+#define FSENSOR_INT_PIN_PCICR_BIT PCIE1
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+bool fsensor_enabled = true;
|
|
|
|
+
|
|
|
|
+bool fsensor_watch_runout = true;
|
|
|
|
+
|
|
|
|
+bool fsensor_not_responding = false;
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+#ifndef IR_SENSOR
|
|
|
|
+bool ir_sensor_detected = false;
|
|
|
|
+bool check_for_ir_sensor();
|
|
|
|
+
|
|
|
|
+bool IRSensorDetected() {
|
|
|
|
+ return ir_sensor_detected;
|
|
|
|
+}
|
|
|
|
+#endif
|
|
|
|
+
|
|
|
|
+#ifdef PAT9125
|
|
|
|
+uint8_t fsensor_int_pin_old = 0;
|
|
|
|
+
|
|
|
|
+int16_t fsensor_chunk_len = 0;
|
|
|
|
+
|
|
|
|
+bool fsensor_oq_meassure_enabled = false;
|
|
|
|
+
|
|
|
|
+uint8_t fsensor_err_cnt = 0;
|
|
|
|
+
|
|
|
|
+int16_t fsensor_st_cnt = 0;
|
|
|
|
+
|
|
|
|
+uint8_t fsensor_softfail = 0;
|
|
|
|
+
|
|
|
|
+unsigned long fsensor_softfail_last = 0;
|
|
|
|
+
|
|
|
|
+uint8_t fsensor_softfail_ccnt = 0;
|
|
|
|
+#endif
|
|
|
|
+
|
|
|
|
+#ifdef DEBUG_FSENSOR_LOG
|
|
|
|
+
|
|
|
|
+uint8_t fsensor_log = 1;
|
|
|
|
+#endif
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+bool fsensor_autoload_enabled = true;
|
|
|
|
+
|
|
|
|
+bool fsensor_watch_autoload = false;
|
|
|
|
+
|
|
|
|
+#ifdef PAT9125
|
|
|
|
+
|
|
|
|
+uint16_t fsensor_autoload_y;
|
|
|
|
+
|
|
|
|
+uint8_t fsensor_autoload_c;
|
|
|
|
+
|
|
|
|
+uint32_t fsensor_autoload_last_millis;
|
|
|
|
+
|
|
|
|
+uint8_t fsensor_autoload_sum;
|
|
|
|
+
|
|
|
|
+#endif
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+bool fsensor_oq_meassure = false;
|
|
|
|
+
|
|
|
|
+uint8_t fsensor_oq_skipchunk;
|
|
|
|
+
|
|
|
|
+uint8_t fsensor_oq_samples;
|
|
|
|
+
|
|
|
|
+uint16_t fsensor_oq_st_sum;
|
|
|
|
+
|
|
|
|
+uint16_t fsensor_oq_yd_sum;
|
|
|
|
+
|
|
|
|
+uint16_t fsensor_oq_er_sum;
|
|
|
|
+
|
|
|
|
+uint8_t fsensor_oq_er_max;
|
|
|
|
+
|
|
|
|
+int16_t fsensor_oq_yd_min;
|
|
|
|
+
|
|
|
|
+int16_t fsensor_oq_yd_max;
|
|
|
|
+
|
|
|
|
+uint16_t fsensor_oq_sh_sum;
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+#ifdef IR_SENSOR_ANALOG
|
|
|
|
+ClFsensorPCB oFsensorPCB;
|
|
|
|
+ClFsensorActionNA oFsensorActionNA;
|
|
|
|
+bool bIRsensorStateFlag=false;
|
|
|
|
+ShortTimer tIRsensorCheckTimer;
|
|
|
|
+#endif
|
|
|
|
+
|
|
|
|
+void fsensor_stop_and_save_print(void)
|
|
|
|
+{
|
|
|
|
+ puts_P(PSTR("fsensor_stop_and_save_print"));
|
|
|
|
+ stop_and_save_print_to_ram(0, 0);
|
|
|
|
+ fsensor_watch_runout = false;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+#ifdef PAT9125
|
|
|
|
+
|
|
|
|
+void fsensor_reset_err_cnt()
|
|
|
|
+{
|
|
|
|
+ fsensor_err_cnt = 0;
|
|
|
|
+ pat9125_y = 0;
|
|
|
|
+ st_reset_fsensor();
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+void fsensor_set_axis_steps_per_unit(float u)
|
|
|
|
+{
|
|
|
|
+ fsensor_chunk_len = (int16_t)(FSENSOR_CHUNK_LEN * u);
|
|
|
|
+}
|
|
|
|
+#endif
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+void fsensor_restore_print_and_continue(void)
|
|
|
|
+{
|
|
|
|
+ puts_P(PSTR("fsensor_restore_print_and_continue"));
|
|
|
|
+ fsensor_watch_runout = true;
|
|
|
|
+#ifdef PAT9125
|
|
|
|
+ fsensor_reset_err_cnt();
|
|
|
|
+#endif
|
|
|
|
+ restore_print_from_ram_and_continue(0);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+void fsensor_checkpoint_print(void)
|
|
|
|
+{
|
|
|
|
+ puts_P(PSTR("fsensor_checkpoint_print"));
|
|
|
|
+ stop_and_save_print_to_ram(0, 0);
|
|
|
|
+ restore_print_from_ram_and_continue(0);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+#ifdef IR_SENSOR_ANALOG
|
|
|
|
+const char* FsensorIRVersionText()
|
|
|
|
+{
|
|
|
|
+ switch(oFsensorPCB)
|
|
|
|
+ {
|
|
|
|
+ case ClFsensorPCB::_Old:
|
|
|
|
+ return _T(MSG_IR_03_OR_OLDER);
|
|
|
|
+ case ClFsensorPCB::_Rev04:
|
|
|
|
+ return _T(MSG_IR_04_OR_NEWER);
|
|
|
|
+ default:
|
|
|
|
+ return _T(MSG_IR_UNKNOWN);
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+#endif
|
|
|
|
+
|
|
|
|
+void fsensor_init(void)
|
|
|
|
+{
|
|
|
|
+#ifdef PAT9125
|
|
|
|
+ uint8_t pat9125 = pat9125_init();
|
|
|
|
+ printf_P(PSTR("PAT9125_init:%u\n"), pat9125);
|
|
|
|
+#endif
|
|
|
|
+ uint8_t fsensor_enabled = eeprom_read_byte((uint8_t*)EEPROM_FSENSOR);
|
|
|
|
+ fsensor_autoload_enabled=eeprom_read_byte((uint8_t*)EEPROM_FSENS_AUTOLOAD_ENABLED);
|
|
|
|
+ fsensor_not_responding = false;
|
|
|
|
+#ifdef PAT9125
|
|
|
|
+ uint8_t oq_meassure_enabled = eeprom_read_byte((uint8_t*)EEPROM_FSENS_OQ_MEASS_ENABLED);
|
|
|
|
+ fsensor_oq_meassure_enabled = (oq_meassure_enabled == 1)?true:false;
|
|
|
|
+ fsensor_set_axis_steps_per_unit(cs.axis_steps_per_unit[E_AXIS]);
|
|
|
|
+
|
|
|
|
+ if (!pat9125){
|
|
|
|
+ fsensor_enabled = 0;
|
|
|
|
+ fsensor_not_responding = true;
|
|
|
|
+ }
|
|
|
|
+#endif
|
|
|
|
+#ifdef IR_SENSOR_ANALOG
|
|
|
|
+ bIRsensorStateFlag=false;
|
|
|
|
+ oFsensorPCB = (ClFsensorPCB)eeprom_read_byte((uint8_t*)EEPROM_FSENSOR_PCB);
|
|
|
|
+ oFsensorActionNA = (ClFsensorActionNA)eeprom_read_byte((uint8_t*)EEPROM_FSENSOR_ACTION_NA);
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ fsensor_not_responding = ! fsensor_IR_check();
|
|
|
|
+#endif
|
|
|
|
+ if (fsensor_enabled){
|
|
|
|
+ fsensor_enable(false);
|
|
|
|
+ } else {
|
|
|
|
+ fsensor_disable(false);
|
|
|
|
+ }
|
|
|
|
+ printf_P(PSTR("FSensor %S"), (fsensor_enabled?PSTR("ENABLED"):PSTR("DISABLED")));
|
|
|
|
+#ifdef IR_SENSOR_ANALOG
|
|
|
|
+ printf_P(PSTR(" (sensor board revision:%S)\n"), FsensorIRVersionText());
|
|
|
|
+#else
|
|
|
|
+ MYSERIAL.println();
|
|
|
|
+#endif
|
|
|
|
+
|
|
|
|
+#ifndef IR_SENSOR
|
|
|
|
+ ir_sensor_detected = check_for_ir_sensor();
|
|
|
|
+#endif
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+bool fsensor_enable(bool bUpdateEEPROM)
|
|
|
|
+{
|
|
|
|
+#ifdef PAT9125
|
|
|
|
+ (void)bUpdateEEPROM;
|
|
|
|
+
|
|
|
|
+ if (mmu_enabled == false) {
|
|
|
|
+ uint8_t pat9125 = pat9125_init();
|
|
|
|
+ printf_P(PSTR("PAT9125_init:%u\n"), pat9125);
|
|
|
|
+ if (pat9125)
|
|
|
|
+ fsensor_not_responding = false;
|
|
|
|
+ else
|
|
|
|
+ fsensor_not_responding = true;
|
|
|
|
+ fsensor_enabled = pat9125 ? true : false;
|
|
|
|
+ fsensor_watch_runout = true;
|
|
|
|
+ fsensor_oq_meassure = false;
|
|
|
|
+ fsensor_reset_err_cnt();
|
|
|
|
+ eeprom_update_byte((uint8_t*)EEPROM_FSENSOR, fsensor_enabled ? 0x01 : 0x00);
|
|
|
|
+ FSensorStateMenu = fsensor_enabled ? 1 : 0;
|
|
|
|
+ }
|
|
|
|
+ else
|
|
|
|
+ {
|
|
|
|
+ fsensor_enabled = true;
|
|
|
|
+ eeprom_update_byte((uint8_t*)EEPROM_FSENSOR, 0x01);
|
|
|
|
+ FSensorStateMenu = 1;
|
|
|
|
+ }
|
|
|
|
+#else
|
|
|
|
+#ifdef IR_SENSOR_ANALOG
|
|
|
|
+ if(!fsensor_IR_check())
|
|
|
|
+ {
|
|
|
|
+ bUpdateEEPROM=true;
|
|
|
|
+ fsensor_enabled=false;
|
|
|
|
+ fsensor_not_responding=true;
|
|
|
|
+ FSensorStateMenu=0;
|
|
|
|
+ }
|
|
|
|
+ else {
|
|
|
|
+#endif
|
|
|
|
+ fsensor_enabled=true;
|
|
|
|
+ fsensor_not_responding=false;
|
|
|
|
+ FSensorStateMenu=1;
|
|
|
|
+#ifdef IR_SENSOR_ANALOG
|
|
|
|
+ }
|
|
|
|
+#endif
|
|
|
|
+ if(bUpdateEEPROM)
|
|
|
|
+ eeprom_update_byte((uint8_t*)EEPROM_FSENSOR, FSensorStateMenu);
|
|
|
|
+#endif
|
|
|
|
+ return fsensor_enabled;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+void fsensor_disable(bool bUpdateEEPROM)
|
|
|
|
+{
|
|
|
|
+ fsensor_enabled = false;
|
|
|
|
+ FSensorStateMenu = 0;
|
|
|
|
+ if(bUpdateEEPROM)
|
|
|
|
+ eeprom_update_byte((uint8_t*)EEPROM_FSENSOR, 0x00);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+void fsensor_autoload_set(bool State)
|
|
|
|
+{
|
|
|
|
+#ifdef PAT9125
|
|
|
|
+ if (!State) fsensor_autoload_check_stop();
|
|
|
|
+#endif
|
|
|
|
+ fsensor_autoload_enabled = State;
|
|
|
|
+ eeprom_update_byte((unsigned char *)EEPROM_FSENS_AUTOLOAD_ENABLED, fsensor_autoload_enabled);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+void pciSetup(byte pin)
|
|
|
|
+{
|
|
|
|
+
|
|
|
|
+ *digitalPinToPCMSK(pin) |= bit (digitalPinToPCMSKbit(pin));
|
|
|
|
+ PCIFR |= bit (digitalPinToPCICRbit(pin));
|
|
|
|
+ PCICR |= bit (digitalPinToPCICRbit(pin));
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+#ifdef PAT9125
|
|
|
|
+void fsensor_autoload_check_start(void)
|
|
|
|
+{
|
|
|
|
+
|
|
|
|
+ if (!fsensor_enabled) return;
|
|
|
|
+ if (!fsensor_autoload_enabled) return;
|
|
|
|
+ if (fsensor_watch_autoload) return;
|
|
|
|
+ if (!pat9125_update())
|
|
|
|
+ {
|
|
|
|
+ fsensor_disable();
|
|
|
|
+ fsensor_not_responding = true;
|
|
|
|
+ fsensor_watch_autoload = false;
|
|
|
|
+ printf_P(ERRMSG_PAT9125_NOT_RESP, 3);
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+ puts_P(_N("fsensor_autoload_check_start - autoload ENABLED"));
|
|
|
|
+ fsensor_autoload_y = pat9125_y;
|
|
|
|
+ fsensor_autoload_c = 0;
|
|
|
|
+ fsensor_autoload_sum = 0;
|
|
|
|
+ fsensor_autoload_last_millis = _millis();
|
|
|
|
+ fsensor_watch_runout = false;
|
|
|
|
+ fsensor_watch_autoload = true;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+void fsensor_autoload_check_stop(void)
|
|
|
|
+{
|
|
|
|
+
|
|
|
|
+ if (!fsensor_enabled) return;
|
|
|
|
+
|
|
|
|
+ if (!fsensor_autoload_enabled) return;
|
|
|
|
+
|
|
|
|
+ if (!fsensor_watch_autoload) return;
|
|
|
|
+ puts_P(_N("fsensor_autoload_check_stop - autoload DISABLED"));
|
|
|
|
+ fsensor_autoload_sum = 0;
|
|
|
|
+ fsensor_watch_autoload = false;
|
|
|
|
+ fsensor_watch_runout = true;
|
|
|
|
+ fsensor_reset_err_cnt();
|
|
|
|
+}
|
|
|
|
+#endif
|
|
|
|
+
|
|
|
|
+bool fsensor_check_autoload(void)
|
|
|
|
+{
|
|
|
|
+ if (!fsensor_enabled) return false;
|
|
|
|
+ if (!fsensor_autoload_enabled) return false;
|
|
|
|
+ if (IRSensorDetected()) {
|
|
|
|
+ if (READ(IR_SENSOR_PIN)) {
|
|
|
|
+ fsensor_watch_autoload = true;
|
|
|
|
+ }
|
|
|
|
+ else if (fsensor_watch_autoload == true) {
|
|
|
|
+ fsensor_watch_autoload = false;
|
|
|
|
+ return true;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+#ifdef PAT9125
|
|
|
|
+ if (!fsensor_watch_autoload)
|
|
|
|
+ {
|
|
|
|
+ fsensor_autoload_check_start();
|
|
|
|
+ return false;
|
|
|
|
+ }
|
|
|
|
+#if 0
|
|
|
|
+ uint8_t fsensor_autoload_c_old = fsensor_autoload_c;
|
|
|
|
+#endif
|
|
|
|
+ if ((_millis() - fsensor_autoload_last_millis) < 25) return false;
|
|
|
|
+ fsensor_autoload_last_millis = _millis();
|
|
|
|
+ if (!pat9125_update_y())
|
|
|
|
+ {
|
|
|
|
+ fsensor_disable();
|
|
|
|
+ fsensor_not_responding = true;
|
|
|
|
+ printf_P(ERRMSG_PAT9125_NOT_RESP, 2);
|
|
|
|
+ return false;
|
|
|
|
+ }
|
|
|
|
+ int16_t dy = pat9125_y - fsensor_autoload_y;
|
|
|
|
+ if (dy)
|
|
|
|
+ {
|
|
|
|
+ if (dy > 0)
|
|
|
|
+ {
|
|
|
|
+ fsensor_autoload_sum += dy;
|
|
|
|
+ fsensor_autoload_c += 3;
|
|
|
|
+ }
|
|
|
|
+ else if (fsensor_autoload_c > 1)
|
|
|
|
+ fsensor_autoload_c -= 2;
|
|
|
|
+ fsensor_autoload_y = pat9125_y;
|
|
|
|
+ }
|
|
|
|
+ else if (fsensor_autoload_c > 0)
|
|
|
|
+ fsensor_autoload_c--;
|
|
|
|
+ if (fsensor_autoload_c == 0) fsensor_autoload_sum = 0;
|
|
|
|
+#if 0
|
|
|
|
+ puts_P(_N("fsensor_check_autoload\n"));
|
|
|
|
+ if (fsensor_autoload_c != fsensor_autoload_c_old)
|
|
|
|
+ printf_P(PSTR("fsensor_check_autoload dy=%d c=%d sum=%d\n"), dy, fsensor_autoload_c, fsensor_autoload_sum);
|
|
|
|
+#endif
|
|
|
|
+
|
|
|
|
+ if ((fsensor_autoload_c >= 12) && (fsensor_autoload_sum > 20))
|
|
|
|
+ {
|
|
|
|
+
|
|
|
|
+ return true;
|
|
|
|
+ }
|
|
|
|
+#endif
|
|
|
|
+ return false;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+#ifdef PAT9125
|
|
|
|
+void fsensor_oq_meassure_set(bool State)
|
|
|
|
+{
|
|
|
|
+ fsensor_oq_meassure_enabled = State;
|
|
|
|
+ eeprom_update_byte((unsigned char *)EEPROM_FSENS_OQ_MEASS_ENABLED, fsensor_oq_meassure_enabled);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+void fsensor_oq_meassure_start(uint8_t skip)
|
|
|
|
+{
|
|
|
|
+ if (!fsensor_enabled) return;
|
|
|
|
+ if (!fsensor_oq_meassure_enabled) return;
|
|
|
|
+ puts_P(PSTR("fsensor_oq_meassure_start"));
|
|
|
|
+ fsensor_oq_skipchunk = skip;
|
|
|
|
+ fsensor_oq_samples = 0;
|
|
|
|
+ fsensor_oq_st_sum = 0;
|
|
|
|
+ fsensor_oq_yd_sum = 0;
|
|
|
|
+ fsensor_oq_er_sum = 0;
|
|
|
|
+ fsensor_oq_er_max = 0;
|
|
|
|
+ fsensor_oq_yd_min = INT16_MAX;
|
|
|
|
+ fsensor_oq_yd_max = 0;
|
|
|
|
+ fsensor_oq_sh_sum = 0;
|
|
|
|
+ pat9125_update();
|
|
|
|
+ pat9125_y = 0;
|
|
|
|
+ fsensor_oq_meassure = true;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+void fsensor_oq_meassure_stop(void)
|
|
|
|
+{
|
|
|
|
+ if (!fsensor_enabled) return;
|
|
|
|
+ if (!fsensor_oq_meassure_enabled) return;
|
|
|
|
+ printf_P(PSTR("fsensor_oq_meassure_stop, %u samples\n"), fsensor_oq_samples);
|
|
|
|
+ printf_P(_N(" st_sum=%u yd_sum=%u er_sum=%u er_max=%u\n"), fsensor_oq_st_sum, fsensor_oq_yd_sum, fsensor_oq_er_sum, fsensor_oq_er_max);
|
|
|
|
+ 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));
|
|
|
|
+ fsensor_oq_meassure = false;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+#ifdef FSENSOR_QUALITY
|
|
|
|
+const char _OK[] PROGMEM = "OK";
|
|
|
|
+const char _NG[] PROGMEM = "NG!";
|
|
|
|
+
|
|
|
|
+bool fsensor_oq_result(void)
|
|
|
|
+{
|
|
|
|
+ if (!fsensor_enabled) return true;
|
|
|
|
+ if (!fsensor_oq_meassure_enabled) return true;
|
|
|
|
+ puts_P(_N("fsensor_oq_result"));
|
|
|
|
+ bool res_er_sum = (fsensor_oq_er_sum <= FSENSOR_OQ_MAX_ES);
|
|
|
|
+ printf_P(_N(" er_sum = %u %S\n"), fsensor_oq_er_sum, (res_er_sum?_OK:_NG));
|
|
|
|
+ bool res_er_max = (fsensor_oq_er_max <= FSENSOR_OQ_MAX_EM);
|
|
|
|
+ printf_P(_N(" er_max = %u %S\n"), fsensor_oq_er_max, (res_er_max?_OK:_NG));
|
|
|
|
+ uint8_t yd_avg = ((uint32_t)fsensor_oq_yd_sum * fsensor_chunk_len / fsensor_oq_st_sum);
|
|
|
|
+ bool res_yd_avg = (yd_avg >= FSENSOR_OQ_MIN_YD) && (yd_avg <= FSENSOR_OQ_MAX_YD);
|
|
|
|
+ printf_P(_N(" yd_avg = %u %S\n"), yd_avg, (res_yd_avg?_OK:_NG));
|
|
|
|
+ bool res_yd_max = (fsensor_oq_yd_max <= (yd_avg * FSENSOR_OQ_MAX_PD));
|
|
|
|
+ printf_P(_N(" yd_max = %u %S\n"), fsensor_oq_yd_max, (res_yd_max?_OK:_NG));
|
|
|
|
+ bool res_yd_min = (fsensor_oq_yd_min >= (yd_avg / FSENSOR_OQ_MAX_ND));
|
|
|
|
+ printf_P(_N(" yd_min = %u %S\n"), fsensor_oq_yd_min, (res_yd_min?_OK:_NG));
|
|
|
|
+
|
|
|
|
+ uint16_t yd_dev = (fsensor_oq_yd_max - yd_avg) + (yd_avg - fsensor_oq_yd_min);
|
|
|
|
+ printf_P(_N(" yd_dev = %u\n"), yd_dev);
|
|
|
|
+
|
|
|
|
+ uint16_t yd_qua = 10 * yd_avg / (yd_dev + 1);
|
|
|
|
+ printf_P(_N(" yd_qua = %u %S\n"), yd_qua, ((yd_qua >= 8)?_OK:_NG));
|
|
|
|
+
|
|
|
|
+ uint8_t sh_avg = (fsensor_oq_sh_sum / fsensor_oq_samples);
|
|
|
|
+ bool res_sh_avg = (sh_avg <= FSENSOR_OQ_MAX_SH);
|
|
|
|
+ if (yd_qua >= 8) res_sh_avg = true;
|
|
|
|
+
|
|
|
|
+ printf_P(_N(" sh_avg = %u %S\n"), sh_avg, (res_sh_avg?_OK:_NG));
|
|
|
|
+ bool res = res_er_sum && res_er_max && res_yd_avg && res_yd_max && res_yd_min && res_sh_avg;
|
|
|
|
+ printf_P(_N("fsensor_oq_result %S\n"), (res?_OK:_NG));
|
|
|
|
+ return res;
|
|
|
|
+}
|
|
|
|
+#endif
|
|
|
|
+
|
|
|
|
+FORCE_INLINE static void fsensor_isr(int st_cnt)
|
|
|
|
+{
|
|
|
|
+ uint8_t old_err_cnt = fsensor_err_cnt;
|
|
|
|
+ uint8_t pat9125_res = fsensor_oq_meassure?pat9125_update():pat9125_update_y();
|
|
|
|
+ if (!pat9125_res)
|
|
|
|
+ {
|
|
|
|
+ fsensor_disable();
|
|
|
|
+ fsensor_not_responding = true;
|
|
|
|
+ printf_P(ERRMSG_PAT9125_NOT_RESP, 1);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ if (st_cnt != 0)
|
|
|
|
+ {
|
|
|
|
+
|
|
|
|
+ int8_t st_dir = st_cnt >= 0;
|
|
|
|
+ int8_t pat9125_dir = pat9125_y >= 0;
|
|
|
|
+
|
|
|
|
+ if (pat9125_y == 0)
|
|
|
|
+ {
|
|
|
|
+ if (st_dir)
|
|
|
|
+ {
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ if (!fsensor_oq_meassure)
|
|
|
|
+ pat9125_update_bs();
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ if ((pat9125_b < FSENSOR_OQ_MIN_BR) && (pat9125_s > FSENSOR_OQ_MAX_SH))
|
|
|
|
+ {
|
|
|
|
+
|
|
|
|
+ ++fsensor_err_cnt;
|
|
|
|
+ }
|
|
|
|
+ else
|
|
|
|
+ {
|
|
|
|
+
|
|
|
|
+ if(fsensor_err_cnt) --fsensor_err_cnt;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ else if (pat9125_dir != st_dir)
|
|
|
|
+ {
|
|
|
|
+
|
|
|
|
+ if (st_dir) ++fsensor_err_cnt;
|
|
|
|
+ }
|
|
|
|
+ else if (pat9125_dir == st_dir)
|
|
|
|
+ {
|
|
|
|
+
|
|
|
|
+ if (fsensor_err_cnt) --fsensor_err_cnt;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ if (st_dir && fsensor_oq_meassure)
|
|
|
|
+ {
|
|
|
|
+
|
|
|
|
+ if (fsensor_oq_skipchunk)
|
|
|
|
+ {
|
|
|
|
+ fsensor_oq_skipchunk--;
|
|
|
|
+ fsensor_err_cnt = 0;
|
|
|
|
+ }
|
|
|
|
+ else
|
|
|
|
+ {
|
|
|
|
+ if (st_cnt == fsensor_chunk_len)
|
|
|
|
+ {
|
|
|
|
+ if (pat9125_y > 0) if (fsensor_oq_yd_min > pat9125_y) fsensor_oq_yd_min = (fsensor_oq_yd_min + pat9125_y) / 2;
|
|
|
|
+ if (pat9125_y >= 0) if (fsensor_oq_yd_max < pat9125_y) fsensor_oq_yd_max = (fsensor_oq_yd_max + pat9125_y) / 2;
|
|
|
|
+ }
|
|
|
|
+ fsensor_oq_samples++;
|
|
|
|
+ fsensor_oq_st_sum += st_cnt;
|
|
|
|
+ if (pat9125_y > 0) fsensor_oq_yd_sum += pat9125_y;
|
|
|
|
+ if (fsensor_err_cnt > old_err_cnt)
|
|
|
|
+ fsensor_oq_er_sum += (fsensor_err_cnt - old_err_cnt);
|
|
|
|
+ if (fsensor_oq_er_max < fsensor_err_cnt)
|
|
|
|
+ fsensor_oq_er_max = fsensor_err_cnt;
|
|
|
|
+ fsensor_oq_sh_sum += pat9125_s;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+#ifdef DEBUG_FSENSOR_LOG
|
|
|
|
+ if (fsensor_log)
|
|
|
|
+ {
|
|
|
|
+ printf_P(_N("FSENSOR cnt=%d dy=%d err=%u %S\n"), st_cnt, pat9125_y, fsensor_err_cnt, (fsensor_err_cnt > old_err_cnt)?_N("NG!"):_N("OK"));
|
|
|
|
+ if (fsensor_oq_meassure) printf_P(_N("FSENSOR st_sum=%u yd_sum=%u er_sum=%u er_max=%u yd_max=%u\n"), fsensor_oq_st_sum, fsensor_oq_yd_sum, fsensor_oq_er_sum, fsensor_oq_er_max, fsensor_oq_yd_max);
|
|
|
|
+ }
|
|
|
|
+#endif
|
|
|
|
+
|
|
|
|
+ pat9125_y = 0;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+ISR(FSENSOR_INT_PIN_VECT)
|
|
|
|
+{
|
|
|
|
+ if (mmu_enabled || IRSensorDetected()) return;
|
|
|
|
+ if (!((fsensor_int_pin_old ^ FSENSOR_INT_PIN_PIN_REG) & FSENSOR_INT_PIN_MASK)) return;
|
|
|
|
+ fsensor_int_pin_old = FSENSOR_INT_PIN_PIN_REG;
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ static bool _lock = false;
|
|
|
|
+ if (!_lock)
|
|
|
|
+ {
|
|
|
|
+
|
|
|
|
+ int st_cnt = fsensor_st_cnt;
|
|
|
|
+ fsensor_st_cnt = 0;
|
|
|
|
+
|
|
|
|
+ _lock = true;
|
|
|
|
+ sei();
|
|
|
|
+ fsensor_isr(st_cnt);
|
|
|
|
+ cli();
|
|
|
|
+ _lock = false;
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+void fsensor_setup_interrupt(void)
|
|
|
|
+{
|
|
|
|
+ WRITE(FSENSOR_INT_PIN, 0);
|
|
|
|
+ SET_OUTPUT(FSENSOR_INT_PIN);
|
|
|
|
+ fsensor_int_pin_old = 0;
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ FSENSOR_INT_PIN_PCMSK_REG |= bit(FSENSOR_INT_PIN_PCMSK_BIT);
|
|
|
|
+ PCIFR |= bit(FSENSOR_INT_PIN_PCICR_BIT);
|
|
|
|
+ PCICR |= bit(FSENSOR_INT_PIN_PCICR_BIT);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+void fsensor_st_block_chunk(int cnt)
|
|
|
|
+{
|
|
|
|
+ if (!fsensor_enabled) return;
|
|
|
|
+ fsensor_st_cnt += cnt;
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ WRITE(FSENSOR_INT_PIN, !READ(FSENSOR_INT_PIN));
|
|
|
|
+}
|
|
|
|
+#endif
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+void fsensor_enque_M600(){
|
|
|
|
+ puts_P(PSTR("fsensor_update - M600"));
|
|
|
|
+ eeprom_update_byte((uint8_t*)EEPROM_FERROR_COUNT, eeprom_read_byte((uint8_t*)EEPROM_FERROR_COUNT) + 1);
|
|
|
|
+ eeprom_update_word((uint16_t*)EEPROM_FERROR_COUNT_TOT, eeprom_read_word((uint16_t*)EEPROM_FERROR_COUNT_TOT) + 1);
|
|
|
|
+ enquecommand_front_P((PSTR("M600")));
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+void fsensor_update(void)
|
|
|
|
+{
|
|
|
|
+#ifdef PAT9125
|
|
|
|
+ if (fsensor_watch_runout && (fsensor_err_cnt > FSENSOR_ERR_MAX))
|
|
|
|
+ {
|
|
|
|
+ fsensor_stop_and_save_print();
|
|
|
|
+ KEEPALIVE_STATE(IN_HANDLER);
|
|
|
|
+
|
|
|
|
+ bool autoload_enabled_tmp = fsensor_autoload_enabled;
|
|
|
|
+ fsensor_autoload_enabled = false;
|
|
|
|
+ bool oq_meassure_enabled_tmp = fsensor_oq_meassure_enabled;
|
|
|
|
+ fsensor_oq_meassure_enabled = true;
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ current_position[Z_AXIS] += 0.8;
|
|
|
|
+ if(current_position[Z_AXIS] > Z_MAX_POS) current_position[Z_AXIS] = Z_MAX_POS;
|
|
|
|
+ plan_buffer_line_curposXYZE(max_feedrate[Z_AXIS]);
|
|
|
|
+ st_synchronize();
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ fsensor_reset_err_cnt();
|
|
|
|
+ fsensor_oq_meassure_start(0);
|
|
|
|
+ float e_tmp = current_position[E_AXIS];
|
|
|
|
+ current_position[E_AXIS] -= 3;
|
|
|
|
+ plan_buffer_line_curposXYZE(250/60);
|
|
|
|
+ current_position[E_AXIS] = e_tmp;
|
|
|
|
+ plan_buffer_line_curposXYZE(200/60);
|
|
|
|
+ st_synchronize();
|
|
|
|
+ fsensor_oq_meassure_stop();
|
|
|
|
+
|
|
|
|
+ bool err = false;
|
|
|
|
+ err |= (fsensor_err_cnt > 0);
|
|
|
|
+ err |= (fsensor_oq_er_sum > FSENSOR_OQ_MAX_ES);
|
|
|
|
+ err |= (fsensor_oq_yd_sum < FSENSOR_OQ_MIN_YD);
|
|
|
|
+
|
|
|
|
+ fsensor_restore_print_and_continue();
|
|
|
|
+ fsensor_autoload_enabled = autoload_enabled_tmp;
|
|
|
|
+ fsensor_oq_meassure_enabled = oq_meassure_enabled_tmp;
|
|
|
|
+ unsigned long now = _millis();
|
|
|
|
+ if (!err && (now - fsensor_softfail_last) > FSENSOR_SOFTERR_DELTA)
|
|
|
|
+ fsensor_softfail_ccnt = 0;
|
|
|
|
+ if (!err && fsensor_softfail_ccnt <= FSENSOR_SOFTERR_CMAX)
|
|
|
|
+ {
|
|
|
|
+ puts_P(PSTR("fsensor_err_cnt = 0"));
|
|
|
|
+ ++fsensor_softfail;
|
|
|
|
+ ++fsensor_softfail_ccnt;
|
|
|
|
+ fsensor_softfail_last = now;
|
|
|
|
+ }
|
|
|
|
+ else
|
|
|
|
+ {
|
|
|
|
+ fsensor_softfail_ccnt = 0;
|
|
|
|
+ fsensor_softfail_last = 0;
|
|
|
|
+ fsensor_enque_M600();
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+#else
|
|
|
|
+ if (CHECK_FSENSOR && IRSensorDetected())
|
|
|
|
+ {
|
|
|
|
+ if (READ(IR_SENSOR_PIN))
|
|
|
|
+ {
|
|
|
|
+#ifdef IR_SENSOR_ANALOG
|
|
|
|
+ if(!bIRsensorStateFlag)
|
|
|
|
+ {
|
|
|
|
+ bIRsensorStateFlag=true;
|
|
|
|
+ tIRsensorCheckTimer.start();
|
|
|
|
+ }
|
|
|
|
+ else
|
|
|
|
+ {
|
|
|
|
+ if(tIRsensorCheckTimer.expired(IR_SENSOR_STEADY))
|
|
|
|
+ {
|
|
|
|
+ uint8_t nMUX1,nMUX2;
|
|
|
|
+ uint16_t nADC;
|
|
|
|
+ bIRsensorStateFlag=false;
|
|
|
|
+
|
|
|
|
+ DISABLE_TEMPERATURE_INTERRUPT();
|
|
|
|
+ nMUX1=ADMUX;
|
|
|
|
+ nMUX2=ADCSRB;
|
|
|
|
+ adc_setmux(VOLT_IR_PIN);
|
|
|
|
+ ADCSRA|=(1<<ADSC);
|
|
|
|
+ while(ADCSRA&(1<<ADSC))
|
|
|
|
+ ;
|
|
|
|
+ ADCSRA|=(1<<ADSC);
|
|
|
|
+ while(ADCSRA&(1<<ADSC))
|
|
|
|
+ ;
|
|
|
|
+ nADC=ADC;
|
|
|
|
+ ADMUX=nMUX1;
|
|
|
|
+ ADCSRB=nMUX2;
|
|
|
|
+ ENABLE_TEMPERATURE_INTERRUPT();
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ if( (oFsensorPCB == ClFsensorPCB::_Rev04) && ( (nADC*OVERSAMPLENR) > IRsensor_Hopen_TRESHOLD ) )
|
|
|
|
+ {
|
|
|
|
+ fsensor_disable();
|
|
|
|
+ fsensor_not_responding = true;
|
|
|
|
+ printf_P(PSTR("IR sensor not responding (%d)!\n"),1);
|
|
|
|
+ if((ClFsensorActionNA)eeprom_read_byte((uint8_t*)EEPROM_FSENSOR_ACTION_NA)==ClFsensorActionNA::_Pause)
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ if(oFsensorActionNA==ClFsensorActionNA::_Pause)
|
|
|
|
+ lcd_pause_print();
|
|
|
|
+ }
|
|
|
|
+ else
|
|
|
|
+ {
|
|
|
|
+#endif
|
|
|
|
+ fsensor_checkpoint_print();
|
|
|
|
+ fsensor_enque_M600();
|
|
|
|
+#ifdef IR_SENSOR_ANALOG
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ else
|
|
|
|
+ {
|
|
|
|
+ bIRsensorStateFlag=false;
|
|
|
|
+#endif
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+#endif
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+#ifdef IR_SENSOR_ANALOG
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+bool fsensor_IR_check(){
|
|
|
|
+ if( IRsensor_Lmax_TRESHOLD <= current_voltage_raw_IR && current_voltage_raw_IR <= IRsensor_Hmin_TRESHOLD ){
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ puts_P(PSTR("fsensor in forbidden range 1.5-3V - check sensor"));
|
|
|
|
+ return false;
|
|
|
|
+ }
|
|
|
|
+ if( oFsensorPCB == ClFsensorPCB::_Rev04 ){
|
|
|
|
+
|
|
|
|
+ if( IRsensor_Hopen_TRESHOLD <= current_voltage_raw_IR && current_voltage_raw_IR <= IRsensor_VMax_TRESHOLD ){
|
|
|
|
+ puts_P(PSTR("fsensor v0.4 in fault range 4.6-5V - unconnected"));
|
|
|
|
+ return false;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+#if 0
|
|
|
|
+ if( IRsensor_Hopen_TRESHOLD <= current_voltage_raw_IR && current_voltage_raw_IR <= IRsensor_VMax_TRESHOLD ){
|
|
|
|
+ puts_P(PSTR("fsensor v0.4 in fault range 0.0-0.3V - wrong IR sensor"));
|
|
|
|
+ return false;
|
|
|
|
+ }
|
|
|
|
+#endif
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+#if 0
|
|
|
|
+ if( (oFsensorPCB == ClFsensorPCB::_Undef) && ( current_voltage_raw_IR > IRsensor_Lmax_TRESHOLD ) ){
|
|
|
|
+ puts_P(PSTR("Unknown IR sensor version and no filament loaded detected."));
|
|
|
|
+ return false;
|
|
|
|
+ }
|
|
|
|
+#endif
|
|
|
|
+
|
|
|
|
+ return true;
|
|
|
|
+}
|
|
|
|
+#endif
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+#ifndef IR_SENSOR
|
|
|
|
+bool check_for_ir_sensor() {
|
|
|
|
+ bool detected = false;
|
|
|
|
+
|
|
|
|
+ if ((READ(IR_SENSOR_PIN) == 0)
|
|
|
|
+#ifdef PAT9125
|
|
|
|
+ && fsensor_not_responding
|
|
|
|
+#endif
|
|
|
|
+ ) {
|
|
|
|
+ detected = true;
|
|
|
|
+
|
|
|
|
+ } else {
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+ return detected;
|
|
|
|
+}
|
|
|
|
+#endif
|