Remove enum.h include of MarlinConfig.h

This commit is contained in:
Scott Lahteine
2017-11-19 15:11:11 -06:00
parent 1d4571b88d
commit 25af9decfe
5 changed files with 47 additions and 54 deletions

View File

@@ -44,6 +44,23 @@ enum DebugFlags {
DEBUG_ALL = 0xFF
};
#if ENABLED(EMERGENCY_PARSER)
enum e_parser_state {
state_RESET,
state_N,
state_M,
state_M1,
state_M10,
state_M108,
state_M11,
state_M112,
state_M4,
state_M41,
state_M410,
state_IGNORE // to '\n'
};
#endif
//todo: HAL: breaks encapsulation
// For AVR only, define a serial interface based on configuration
#ifdef __AVR__