Disable filament sensor response quality check.

This commit is contained in:
Marek Bel 2018-09-25 15:50:50 +02:00
parent 19c1ba6274
commit d80fcab66c

View file

@ -3192,9 +3192,9 @@ void gcode_M701()
enable_z(); enable_z();
custom_message_type = CUSTOM_MSG_TYPE_F_LOAD; custom_message_type = CUSTOM_MSG_TYPE_F_LOAD;
#ifdef FILAMENT_SENSOR #ifdef FSENSOR_QUALITY
fsensor_oq_meassure_start(40); fsensor_oq_meassure_start(40);
#endif //FILAMENT_SENSOR #endif //FSENSOR_QUALITY
lcd_setstatuspgm(_T(MSG_LOADING_FILAMENT)); lcd_setstatuspgm(_T(MSG_LOADING_FILAMENT));
current_position[E_AXIS] += 40; current_position[E_AXIS] += 40;
@ -3234,7 +3234,7 @@ void gcode_M701()
loading_flag = false; loading_flag = false;
custom_message_type = CUSTOM_MSG_TYPE_STATUS; custom_message_type = CUSTOM_MSG_TYPE_STATUS;
#ifdef FILAMENT_SENSOR #ifdef FSENSOR_QUALITY
fsensor_oq_meassure_stop(); fsensor_oq_meassure_stop();
if (!fsensor_oq_result()) if (!fsensor_oq_result())
@ -3245,7 +3245,7 @@ void gcode_M701()
if (disable) if (disable)
fsensor_disable(); fsensor_disable();
} }
#endif //FILAMENT_SENSOR #endif //FSENSOR_QUALITY
} }
} }
/** /**
@ -9068,9 +9068,9 @@ if((eSoundMode==e_SOUND_MODE_LOUD)||(eSoundMode==e_SOUND_MODE_ONCE))
#endif //FILAMENT_SENSOR #endif //FILAMENT_SENSOR
KEEPALIVE_STATE(IN_HANDLER); KEEPALIVE_STATE(IN_HANDLER);
#ifdef FILAMENT_SENSOR #ifdef FSENSOR_QUALITY
fsensor_oq_meassure_start(70); fsensor_oq_meassure_start(70);
#endif //FILAMENT_SENSOR #endif //FSENSOR_QUALITY
M600_load_filament_movements(); M600_load_filament_movements();
@ -9079,7 +9079,7 @@ if((eSoundMode==e_SOUND_MODE_LOUD)||(eSoundMode==e_SOUND_MODE_ONCE))
delay_keep_alive(50); delay_keep_alive(50);
noTone(BEEPER); noTone(BEEPER);
#ifdef FILAMENT_SENSOR #ifdef FSENSOR_QUALITY
fsensor_oq_meassure_stop(); fsensor_oq_meassure_stop();
if (!fsensor_oq_result()) if (!fsensor_oq_result())
@ -9090,7 +9090,7 @@ if((eSoundMode==e_SOUND_MODE_LOUD)||(eSoundMode==e_SOUND_MODE_ONCE))
if (disable) if (disable)
fsensor_disable(); fsensor_disable();
} }
#endif //FILAMENT_SENSOR #endif //FSENSOR_QUALITY
lcd_update_enable(false); lcd_update_enable(false);
} }