123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- /**
- * Marlin 3D Printer Firmware
- * Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
- *
- * Based on Sprinter and grbl.
- * Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- */
-
- /**
- * feature/runout.h - Runout sensor support
- */
-
- #ifndef _RUNOUT_H_
- #define _RUNOUT_H_
-
- #include "../sd/cardreader.h"
- #include "../module/printcounter.h"
- #include "../module/stepper.h"
- #include "../gcode/queue.h"
-
- #include "../inc/MarlinConfig.h"
-
- #if ENABLED(EXTENSIBLE_UI)
- #include "../lcd/extensible_ui/ui_api.h"
- #endif
-
- #define FIL_RUNOUT_THRESHOLD 5
-
- class FilamentRunoutSensor {
- public:
- static bool enabled;
-
- FilamentRunoutSensor() {}
-
- static void setup();
-
- FORCE_INLINE static void reset() { runout_count = 0; filament_ran_out = false; }
-
- FORCE_INLINE static void run() {
- if ((IS_SD_PRINTING || print_job_timer.isRunning()) && check() && !filament_ran_out) {
- filament_ran_out = true;
- #if ENABLED(EXTENSIBLE_UI)
- UI::onFilamentRunout();
- #endif
- enqueue_and_echo_commands_P(PSTR(FILAMENT_RUNOUT_SCRIPT));
- planner.synchronize();
- }
- }
- private:
- static bool filament_ran_out;
- static uint8_t runout_count;
-
- FORCE_INLINE static bool check() {
- if (!enabled) return false;
- #if NUM_RUNOUT_SENSORS < 2
- // A single sensor applying to all extruders
- const bool is_out = READ(FIL_RUNOUT_PIN) == FIL_RUNOUT_INVERTING;
- #else
- // Read the sensor for the active extruder
- bool is_out;
- #if ENABLED(DUAL_X_CARRIAGE)
- const bool out1 = READ(FIL_RUNOUT_PIN ) == FIL_RUNOUT_INVERTING,
- out2 = READ(FIL_RUNOUT2_PIN) == FIL_RUNOUT_INVERTING;
- if (extruder_duplication_enabled)
- is_out = out1 || out2;
- else
- is_out = active_extruder ? out2 : out1;
- #else
- switch (active_extruder) {
- case 0: is_out = READ(FIL_RUNOUT_PIN) == FIL_RUNOUT_INVERTING; break;
- case 1: is_out = READ(FIL_RUNOUT2_PIN) == FIL_RUNOUT_INVERTING; break;
- #if NUM_RUNOUT_SENSORS > 2
- case 2: is_out = READ(FIL_RUNOUT3_PIN) == FIL_RUNOUT_INVERTING; break;
- #if NUM_RUNOUT_SENSORS > 3
- case 3: is_out = READ(FIL_RUNOUT4_PIN) == FIL_RUNOUT_INVERTING; break;
- #if NUM_RUNOUT_SENSORS > 4
- case 4: is_out = READ(FIL_RUNOUT5_PIN) == FIL_RUNOUT_INVERTING; break;
- #if NUM_RUNOUT_SENSORS > 5
- case 5: is_out = READ(FIL_RUNOUT6_PIN) == FIL_RUNOUT_INVERTING; break;
- #endif // > 5
- #endif // > 4
- #endif // > 3
- #endif // > 2
- }
- #endif
- #endif
- return (is_out ? ++runout_count : (runout_count = 0)) > FIL_RUNOUT_THRESHOLD;
- }
- };
-
- extern FilamentRunoutSensor runout;
-
- #endif // _RUNOUT_H_
|