Add valid() to recovery.info

This commit is contained in:
Scott Lahteine 2020-06-01 17:02:49 -05:00
parent e380498512
commit bda380513a
2 changed files with 4 additions and 2 deletions

View file

@ -106,6 +106,8 @@ typedef struct {
uint8_t valid_foot;
bool valid() { return valid_head && valid_head == valid_foot; }
} job_recovery_info_t;
class PrintJobRecovery {
@ -164,7 +166,7 @@ class PrintJobRecovery {
}
#endif
static inline bool valid() { return info.valid_head && info.valid_head == info.valid_foot; }
static inline bool valid() { return info.valid(); }
#if ENABLED(DEBUG_POWER_LOSS_RECOVERY)
static void debug(PGM_P const prefix);

View file

@ -41,7 +41,7 @@ inline void plr_error(PGM_P const prefix) {
#if ENABLED(DEBUG_POWER_LOSS_RECOVERY)
DEBUG_ECHO_START();
serialprintPGM(prefix);
DEBUG_ECHOLNPGM(" Power-Loss Recovery Data");
DEBUG_ECHOLNPGM(" Job Recovery Data");
#else
UNUSED(prefix);
#endif