MMU_IR_SENSOR_PIN -> IR_SENSOR_PIN

This commit is contained in:
PavelSindler 2019-01-25 18:01:17 +01:00
parent 7e3a1c7d45
commit 6b6a3d7d5f
2 changed files with 5 additions and 5 deletions

View File

@ -349,7 +349,7 @@ void mmu_loop(void)
case 3: //response to mmu commands case 3: //response to mmu commands
if (mmu_idl_sens) if (mmu_idl_sens)
{ {
if (PIN_GET(MMU_IDLER_SENSOR_PIN) == 0 && mmu_loading_flag) if (PIN_GET(IR_SENSOR_PIN) == 0 && mmu_loading_flag)
{ {
#ifdef MMU_DEBUG #ifdef MMU_DEBUG
printf_P(PSTR("MMU <= 'A'\n")); printf_P(PSTR("MMU <= 'A'\n"));
@ -510,7 +510,7 @@ bool mmu_get_response(uint8_t move)
if (PIN_GET(IR_SENSOR_PIN) == 0) move = MMU_NO_MOVE; if (PIN_GET(IR_SENSOR_PIN) == 0) move = MMU_NO_MOVE;
break; break;
case MMU_UNLOAD_MOVE: case MMU_UNLOAD_MOVE:
if (PIN_GET(MMU_IDLER_SENSOR_PIN) == 0) //filament is still detected by idler sensor, printer helps with unlading if (PIN_GET(IR_SENSOR_PIN) == 0) //filament is still detected by idler sensor, printer helps with unlading
{ {
if (can_extrude()) if (can_extrude())
{ {
@ -528,7 +528,7 @@ bool mmu_get_response(uint8_t move)
} }
break; break;
case MMU_TCODE_MOVE: //first do unload and then continue with infinite loading movements case MMU_TCODE_MOVE: //first do unload and then continue with infinite loading movements
if (PIN_GET(MMU_IDLER_SENSOR_PIN) == 0) //filament detected by idler sensor, we must unload first if (PIN_GET(IR_SENSOR_PIN) == 0) //filament detected by idler sensor, we must unload first
{ {
if (can_extrude()) if (can_extrude())
{ {

View File

@ -7023,7 +7023,7 @@ static bool lcd_selftest_fsensor(void)
//! * Pre-heat to PLA extrude temperature. //! * Pre-heat to PLA extrude temperature.
//! * Unload filament possibly present. //! * Unload filament possibly present.
//! * Move extruder idler same way as during filament load //! * Move extruder idler same way as during filament load
//! and sample MMU_IDLER_SENSOR_PIN. //! and sample IR_SENSOR_PIN.
//! * Check that pin doesn't go low. //! * Check that pin doesn't go low.
//! //!
//! @retval true passed //! @retval true passed
@ -7060,7 +7060,7 @@ static bool selftest_irsensor()
mmu_load_step(false); mmu_load_step(false);
while (blocks_queued()) while (blocks_queued())
{ {
if (PIN_GET(MMU_IDLER_SENSOR_PIN) == 0) return false; if (PIN_GET(IR_SENSOR_PIN) == 0) return false;
#ifdef TMC2130 #ifdef TMC2130
manage_heater(); manage_heater();
// Vojtech: Don't disable motors inside the planner! // Vojtech: Don't disable motors inside the planner!