Add static_assert check for TEMP_HYSTERESIS

This commit is contained in:
sarusani 2023-08-18 16:01:20 +02:00 committed by DRracer
parent 0d097d5a62
commit 6c0f80e680
1 changed files with 2 additions and 0 deletions

View File

@ -5,3 +5,5 @@ const uint16_t _nPrinterType PROGMEM=PRINTER_TYPE;
const char _sPrinterName[] PROGMEM=PRINTER_NAME;
const uint16_t _nPrinterMmuType PROGMEM=PRINTER_MMU_TYPE;
const char _sPrinterMmuName[] PROGMEM=PRINTER_MMU_NAME;
static_assert(TEMP_HYSTERESIS > 0, "TEMP_HYSTERESIS must be greater than 0");