Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Duet3D/RepRapFirmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Crocker <dcrocker@eschertech.com>2018-12-09 00:57:15 +0300
committerDavid Crocker <dcrocker@eschertech.com>2018-12-09 00:57:15 +0300
commit7015c488f768e99151ab7de5ddef1eef84d24e41 (patch)
tree3526ed91523dbec492b736c698867b9cf65169f8 /src/Display/Menu.h
parent6e457735157a8cb452cc244f866fb1c083c7b48b (diff)
Changed for version 2.02RC6
Added legacy Duet RTOS configuration Changed LF in HTTP responses to CRLF in legacy Duet webserver Don't allocate memory for 12864 display until the display is configured using M918 Bug fix: when changing directory in files list on 12864 display, the display wasn't updated until the encoder was turned
Diffstat (limited to 'src/Display/Menu.h')
-rw-r--r--src/Display/Menu.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/Display/Menu.h b/src/Display/Menu.h
index abbe554c..e60657f8 100644
--- a/src/Display/Menu.h
+++ b/src/Display/Menu.h
@@ -8,6 +8,10 @@
#ifndef SRC_DISPLAY_MENU_H_
#define SRC_DISPLAY_MENU_H_
+#include "RepRapFirmware.h"
+
+#if SUPPORT_12864_LCD
+
#include "MenuItem.h"
class MessageBox;
@@ -82,4 +86,6 @@ private:
char commandBuffer[CommandBufferSize];
};
+#endif
+
#endif /* SRC_DISPLAY_MENU_H_ */