mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-03-26 08:02:52 +00:00
🔧 Safety feature warnings
This commit is contained in:
parent
3c94f2f1c3
commit
bc567e7b49
1 changed files with 17 additions and 0 deletions
|
@ -35,6 +35,23 @@
|
||||||
#warning "WARNING! Disable MARLIN_DEV_MODE for the final build!"
|
#warning "WARNING! Disable MARLIN_DEV_MODE for the final build!"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
// Safety Features
|
||||||
|
#if DISABLED(USE_WATCHDOG)
|
||||||
|
#warning "Safety Alert! Enable USE_WATCHDOG for the final build!"
|
||||||
|
#endif
|
||||||
|
#if HAS_HOTEND && DISABLED(THERMAL_PROTECTION_HOTENDS)
|
||||||
|
#warning "Safety Alert! Enable THERMAL_PROTECTION_HOTENDS for the final build!"
|
||||||
|
#endif
|
||||||
|
#if HAS_HEATED_BED && DISABLED(THERMAL_PROTECTION_BED)
|
||||||
|
#warning "Safety Alert! Enable THERMAL_PROTECTION_BED for the final build!"
|
||||||
|
#endif
|
||||||
|
#if HAS_HEATED_CHAMBER && DISABLED(THERMAL_PROTECTION_CHAMBER)
|
||||||
|
#warning "Safety Alert! Enable THERMAL_PROTECTION_CHAMBER for the final build!"
|
||||||
|
#endif
|
||||||
|
#if HAS_COOLER && DISABLED(THERMAL_PROTECTION_COOLER)
|
||||||
|
#warning "Safety Alert! Enable THERMAL_PROTECTION_COOLER for the final build!"
|
||||||
|
#endif
|
||||||
|
|
||||||
#if NONE(HAS_RESUME_CONTINUE, HOST_PROMPT_SUPPORT)
|
#if NONE(HAS_RESUME_CONTINUE, HOST_PROMPT_SUPPORT)
|
||||||
#warning "Your Configuration provides no method to acquire user feedback!"
|
#warning "Your Configuration provides no method to acquire user feedback!"
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Reference in a new issue