Fix a compile error in EMERGENCY_PARSER sanity check

This commit is contained in:
Scott Lahteine 2016-08-08 21:49:57 -07:00
parent 45f67164b6
commit 8100a4dace

View File

@ -744,6 +744,6 @@
/**
* emergency-command parser
*/
#if ENABLED(EMERGENCY_PARSER) && ENABLED(USBCON)
#if ENABLED(EMERGENCY_PARSER) && defined(USBCON)
#error "EMERGENCY_PARSER does not work on boards with AT90USB processors (USBCON)."
#endif