Browse Source
Updated the default configuration and fixed a printcounter.h typo
pull/1/head
João Brázio
9 years ago
No known key found for this signature in database
GPG Key ID: F62CFD37DFFDB540
2 changed files with
14 additions and
1 deletions
-
Marlin/Configuration.h
-
Marlin/printcounter.h
|
@ -757,6 +757,19 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the l |
|
|
#define ABS_PREHEAT_HPB_TEMP 110 |
|
|
#define ABS_PREHEAT_HPB_TEMP 110 |
|
|
#define ABS_PREHEAT_FAN_SPEED 0 // Insert Value between 0 and 255
|
|
|
#define ABS_PREHEAT_FAN_SPEED 0 // Insert Value between 0 and 255
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
|
|
// Print Counter
|
|
|
|
|
|
//
|
|
|
|
|
|
// When enabled Marlin will keep track of some print statistical data such as:
|
|
|
|
|
|
// - Total print jobs
|
|
|
|
|
|
// - Total successfull print jobs
|
|
|
|
|
|
// - Total failed print jobs
|
|
|
|
|
|
// - Total time printing
|
|
|
|
|
|
//
|
|
|
|
|
|
// This information can be viewed by the M78 command.
|
|
|
|
|
|
//#define PRINTCOUNTER
|
|
|
|
|
|
|
|
|
//=============================================================================
|
|
|
//=============================================================================
|
|
|
//============================= LCD and SD support ============================
|
|
|
//============================= LCD and SD support ============================
|
|
|
//=============================================================================
|
|
|
//=============================================================================
|
|
|
|
@ -71,7 +71,7 @@ class PrintCounter: public Stopwatch { |
|
|
* EEPROM save cycle, the development team recommends to set this value |
|
|
* EEPROM save cycle, the development team recommends to set this value |
|
|
* no lower than 3600 secs (1 hour). |
|
|
* no lower than 3600 secs (1 hour). |
|
|
*/ |
|
|
*/ |
|
|
const uint16_t saveInterval = PRINTCOUNTER_SAVE_INTERVAL; |
|
|
const uint16_t saveInterval = 3600; |
|
|
|
|
|
|
|
|
/**
|
|
|
/**
|
|
|
* @brief Stats were loaded from EERPROM |
|
|
* @brief Stats were loaded from EERPROM |
|
|