Update includes for gcode.h => parser.h

This commit is contained in:
Scott Lahteine 2018-03-14 00:57:08 -05:00
parent 00165699e9
commit ccb2a95456
13 changed files with 19 additions and 20 deletions

View file

@ -21,20 +21,19 @@
*/
/**
* gcode.h - Parser for a GCode line, providing a parameter interface.
* Codes like M149 control the way the GCode parser behaves,
* so settings for these codes are located in this class.
* parser.h - Parser for a GCode line, providing a parameter interface.
* Codes like M149 control the way the GCode parser behaves,
* so settings for these codes are located in this class.
*/
#ifndef GCODE_H
#define GCODE_H
#ifndef _PARSER_H_
#define _PARSER_H_
#include "enum.h"
#include "types.h"
#include "MarlinConfig.h"
//#define DEBUG_GCODE_PARSER
#if ENABLED(DEBUG_GCODE_PARSER)
#include "hex_print_routines.h"
#include "serial.h"
@ -331,4 +330,4 @@ public:
extern GCodeParser parser;
#endif // GCODE_H
#endif // _PARSER_H_