AVR sanity check for MONITOR_DRIVER_STATUS with SW Serial (#16421)

This commit is contained in:
Jason Smith
2020-01-19 20:25:38 -08:00
committed by Scott Lahteine
parent 0547d9d651
commit 439e73d79c
2 changed files with 5 additions and 1 deletions

View File

@ -59,3 +59,7 @@
#if HAS_TRINAMIC && ENABLED(ENDSTOP_INTERRUPTS_FEATURE)
#error "TMCStepper includes SoftwareSerial.h which is incompatible with ENDSTOP_INTERRUPTS_FEATURE. Disable ENDSTOP_INTERRUPTS_FEATURE to continue."
#endif
#if TMC_HAS_SW_SERIAL && ENABLED(MONITOR_DRIVER_STATUS)
#error "MONITOR_DRIVER_STATUS causes performance issues when used with SoftwareSerial-connected drivers. Disable MONITOR_DRIVER_STATUS or use hardware serial to continue."
#endif