Pause & runout code cleanup

Final changes to pause & filament runout overhaul before release:
- Use booleans instead of chars for cleaner code
- Raised retraction amount
This commit is contained in:
David Ramiro
2019-02-18 18:05:37 +01:00
parent 16d6d37096
commit 2bd6f2f23a
3 changed files with 15 additions and 15 deletions

View File

@@ -72,8 +72,8 @@ private:
uint8_t tmp_extruder=0;
char LastSDstatus=0;
uint16_t HeaterCheckCount=0;
char PausedByRunout=false;
char PausedByFilamentChange=false;
bool PausedByRunout=false;
bool PausedByFilamentChange=false;
struct OutageDataStruct {
char OutageDataVersion;