From f7bfca30612e0da9519fdced7bcd397a72f4af94 Mon Sep 17 00:00:00 2001 From: 3d-gussner <3d.gussner@gmail.com> Date: Wed, 4 Dec 2019 13:39:56 +0100 Subject: [PATCH] Fix merge issues --- Firmware/Marlin_main.cpp | 40 ++++++---------------------------------- 1 file changed, 6 insertions(+), 34 deletions(-) diff --git a/Firmware/Marlin_main.cpp b/Firmware/Marlin_main.cpp index 22229b47..3a327084 100755 --- a/Firmware/Marlin_main.cpp +++ b/Firmware/Marlin_main.cpp @@ -5569,14 +5569,9 @@ if(eSoundMode!=e_SOUND_MODE_SILENT) card.openFile(strchr_pointer + 4,true); break; -<<<<<<< HEAD /*! ### M24 - Start SD print M24: Start/resume SD print */ ---------------------------------- -======= - //! ### M24 - Start/resume SD print - // ---------------------------------- ->>>>>>> upstream/MK3 case 24: if (isPrintPaused) lcd_resume_print(); @@ -5588,14 +5583,6 @@ if(eSoundMode!=e_SOUND_MODE_SILENT) } break; -<<<<<<< HEAD - /*! - ### M25 - Pause SD print M25: Pause SD print - */ ---------------------------------- - case 25: - card.pauseSDPrint(); - break; - /*! ### M26 - Set SD index M26: Set SD position Set position in SD card file to index in bytes. @@ -5605,13 +5592,6 @@ if(eSoundMode!=e_SOUND_MODE_SILENT) - `S` - Index in bytes */ ---------------------------------- -======= - //! ### M26 S\ - Set SD index - //! Set position in SD card file to index in bytes. - //! This command is expected to be called after M23 and before M24. - //! Otherwise effect of this command is undefined. - // ---------------------------------- ->>>>>>> upstream/MK3 case 26: if(card.cardOK && code_seen('S')) { long index = code_value_long(); @@ -7759,17 +7739,16 @@ Sigma_Exit: break; #endif //FILAMENTCHANGEENABLE -<<<<<<< HEAD /*! ### M601 - Pause print M601: Pause print */ ------------------------------- -======= - //! ### M25 - Pause SD print - //! ### M601 - Pause print - //! ### M125 - Pause print (TODO: not implemented) - // ------------------------------- + /*! + ### M125 - Pause print (TODO: not implemented) + */ ------------------------------- + /*! + ### M25 - Pause SD print M25: Pause SD print + */ ---------------------------------- case 25: ->>>>>>> upstream/MK3 case 601: { if (!isPrintPaused) @@ -7790,18 +7769,11 @@ Sigma_Exit: } break; -<<<<<<< HEAD /*! ### M603 - Stop print M603: Stop print */ ------------------------------- - case 603: { - lcd_print_stop(); -======= - //! ### M603 - Stop print - // ------------------------------- case 603: { Stop(); ->>>>>>> upstream/MK3 } break;