From 6a5d3b580d35f0dfd2466e962e9248915ec22ca6 Mon Sep 17 00:00:00 2001 From: Bob-the-Kuhn Date: Sat, 3 Jun 2017 13:19:55 -0500 Subject: [PATCH] fix "hex_address not defined" when UBL is enabled --- Marlin/Marlin.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Marlin/Marlin.h b/Marlin/Marlin.h index c2e84e628..5a9b3191d 100644 --- a/Marlin/Marlin.h +++ b/Marlin/Marlin.h @@ -35,6 +35,10 @@ #include "MarlinConfig.h" +#ifdef DEBUG_GCODE_PARSER + #include "gcode.h" +#endif + #include "enum.h" #include "types.h" #include "fastio.h"