🔧 Remove STM32F4 Print Counter Sanity Check (#24605)
This commit is contained in:
parent
cfe1d52bf2
commit
b4af335b7a
@ -2362,7 +2362,7 @@
|
|||||||
*/
|
*/
|
||||||
//#define PRINTCOUNTER
|
//#define PRINTCOUNTER
|
||||||
#if ENABLED(PRINTCOUNTER)
|
#if ENABLED(PRINTCOUNTER)
|
||||||
#define PRINTCOUNTER_SAVE_INTERVAL 60 // (minutes) EEPROM save interval during print
|
#define PRINTCOUNTER_SAVE_INTERVAL 60 // (minutes) EEPROM save interval during print. A value of 0 will save stats at end of print.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// @section security
|
// @section security
|
||||||
|
@ -27,3 +27,8 @@
|
|||||||
#elif EITHER(I2C_EEPROM, SPI_EEPROM)
|
#elif EITHER(I2C_EEPROM, SPI_EEPROM)
|
||||||
#define USE_SHARED_EEPROM 1
|
#define USE_SHARED_EEPROM 1
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
// Some STM32F4 boards may lose steps when saving to EEPROM during print (PR #17946)
|
||||||
|
#if defined(STM32F4xx) && PRINTCOUNTER_SAVE_INTERVAL > 0
|
||||||
|
#define PRINTCOUNTER_SYNC 1
|
||||||
|
#endif
|
||||||
|
@ -37,11 +37,6 @@
|
|||||||
#error "SDCARD_EEPROM_EMULATION requires SDSUPPORT. Enable SDSUPPORT or choose another EEPROM emulation."
|
#error "SDCARD_EEPROM_EMULATION requires SDSUPPORT. Enable SDSUPPORT or choose another EEPROM emulation."
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(STM32F4xx) && BOTH(PRINTCOUNTER, FLASH_EEPROM_EMULATION)
|
|
||||||
#warning "FLASH_EEPROM_EMULATION may cause long delays when writing and should not be used while printing."
|
|
||||||
#error "Disable PRINTCOUNTER or choose another EEPROM emulation."
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if !defined(STM32F4xx) && ENABLED(FLASH_EEPROM_LEVELING)
|
#if !defined(STM32F4xx) && ENABLED(FLASH_EEPROM_LEVELING)
|
||||||
#error "FLASH_EEPROM_LEVELING is currently only supported on STM32F4 hardware."
|
#error "FLASH_EEPROM_LEVELING is currently only supported on STM32F4 hardware."
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user