Fix merge issues
This commit is contained in:
parent
7da1db2f25
commit
f7bfca3061
1 changed files with 6 additions and 34 deletions
|
@ -5569,14 +5569,9 @@ if(eSoundMode!=e_SOUND_MODE_SILENT)
|
||||||
card.openFile(strchr_pointer + 4,true);
|
card.openFile(strchr_pointer + 4,true);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
/*!
|
/*!
|
||||||
### M24 - Start SD print <a href="https://reprap.org/wiki/G-code#M24:_Start.2Fresume_SD_print">M24: Start/resume SD print</a>
|
### M24 - Start SD print <a href="https://reprap.org/wiki/G-code#M24:_Start.2Fresume_SD_print">M24: Start/resume SD print</a>
|
||||||
*/ ----------------------------------
|
*/ ----------------------------------
|
||||||
=======
|
|
||||||
//! ### M24 - Start/resume SD print
|
|
||||||
// ----------------------------------
|
|
||||||
>>>>>>> upstream/MK3
|
|
||||||
case 24:
|
case 24:
|
||||||
if (isPrintPaused)
|
if (isPrintPaused)
|
||||||
lcd_resume_print();
|
lcd_resume_print();
|
||||||
|
@ -5588,14 +5583,6 @@ if(eSoundMode!=e_SOUND_MODE_SILENT)
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
/*!
|
|
||||||
### M25 - Pause SD print <a href="https://reprap.org/wiki/G-code#M25:_Pause_SD_print">M25: Pause SD print</a>
|
|
||||||
*/ ----------------------------------
|
|
||||||
case 25:
|
|
||||||
card.pauseSDPrint();
|
|
||||||
break;
|
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
### M26 - Set SD index <a href="https://reprap.org/wiki/G-code#M26:_Set_SD_position">M26: Set SD position</a>
|
### M26 - Set SD index <a href="https://reprap.org/wiki/G-code#M26:_Set_SD_position">M26: Set SD position</a>
|
||||||
Set position in SD card file to index in bytes.
|
Set position in SD card file to index in bytes.
|
||||||
|
@ -5605,13 +5592,6 @@ if(eSoundMode!=e_SOUND_MODE_SILENT)
|
||||||
|
|
||||||
- `S` - Index in bytes
|
- `S` - Index in bytes
|
||||||
*/ ----------------------------------
|
*/ ----------------------------------
|
||||||
=======
|
|
||||||
//! ### M26 S\<index\> - 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:
|
case 26:
|
||||||
if(card.cardOK && code_seen('S')) {
|
if(card.cardOK && code_seen('S')) {
|
||||||
long index = code_value_long();
|
long index = code_value_long();
|
||||||
|
@ -7759,17 +7739,16 @@ Sigma_Exit:
|
||||||
break;
|
break;
|
||||||
#endif //FILAMENTCHANGEENABLE
|
#endif //FILAMENTCHANGEENABLE
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
/*!
|
/*!
|
||||||
### M601 - Pause print <a href="https://reprap.org/wiki/G-code#M601:_Pause_print">M601: Pause print</a>
|
### M601 - Pause print <a href="https://reprap.org/wiki/G-code#M601:_Pause_print">M601: Pause print</a>
|
||||||
*/ -------------------------------
|
*/ -------------------------------
|
||||||
=======
|
/*!
|
||||||
//! ### M25 - Pause SD print
|
### M125 - Pause print (TODO: not implemented)
|
||||||
//! ### M601 - Pause print
|
*/ -------------------------------
|
||||||
//! ### M125 - Pause print (TODO: not implemented)
|
/*!
|
||||||
// -------------------------------
|
### M25 - Pause SD print <a href="https://reprap.org/wiki/G-code#M25:_Pause_SD_print">M25: Pause SD print</a>
|
||||||
|
*/ ----------------------------------
|
||||||
case 25:
|
case 25:
|
||||||
>>>>>>> upstream/MK3
|
|
||||||
case 601:
|
case 601:
|
||||||
{
|
{
|
||||||
if (!isPrintPaused)
|
if (!isPrintPaused)
|
||||||
|
@ -7790,18 +7769,11 @@ Sigma_Exit:
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
/*!
|
/*!
|
||||||
### M603 - Stop print <a href="https://reprap.org/wiki/G-code#M603:_Stop_print">M603: Stop print</a>
|
### M603 - Stop print <a href="https://reprap.org/wiki/G-code#M603:_Stop_print">M603: Stop print</a>
|
||||||
*/ -------------------------------
|
*/ -------------------------------
|
||||||
case 603: {
|
|
||||||
lcd_print_stop();
|
|
||||||
=======
|
|
||||||
//! ### M603 - Stop print
|
|
||||||
// -------------------------------
|
|
||||||
case 603: {
|
case 603: {
|
||||||
Stop();
|
Stop();
|
||||||
>>>>>>> upstream/MK3
|
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue