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>2021-03-04 22:38:47 +0300
committerDavid Crocker <dcrocker@eschertech.com>2021-03-04 22:38:47 +0300
commit44419feb34c968c5e87574099290b6f89bc8e97b (patch)
tree79d1ca39b9ac04c9d23bd932c9c00bffc077e8cd /src/Display
parentce2e74bc10a7ee558bfb2e7dcac3e8352ac253c5 (diff)
Created Platform and PrintMonitor folders within /src
Diffstat (limited to 'src/Display')
-rw-r--r--src/Display/Menu.cpp14
-rw-r--r--src/Display/MenuItem.cpp16
2 files changed, 15 insertions, 15 deletions
diff --git a/src/Display/Menu.cpp b/src/Display/Menu.cpp
index 55bbf906..92ff340e 100644
--- a/src/Display/Menu.cpp
+++ b/src/Display/Menu.cpp
@@ -70,13 +70,13 @@
#if SUPPORT_12864_LCD
#include "Lcd/Lcd.h"
-#include "RepRap.h"
-#include "Platform.h"
-#include "Display/Display.h"
-#include "GCodes/GCodes.h"
-#include "Heating/Heat.h"
-#include "Storage/MassStorage.h"
-#include "Tools/Tool.h"
+#include <Platform/RepRap.h>
+#include <Platform/Platform.h>
+#include "Display.h"
+#include <GCodes/GCodes.h>
+#include <Heating/Heat.h>
+#include <Storage/MassStorage.h>
+#include <Tools/Tool.h>
const uint32_t InactivityTimeout = 20000; // inactivity timeout
const uint32_t ErrorTimeout = 6000; // how long we display an error message for
diff --git a/src/Display/MenuItem.cpp b/src/Display/MenuItem.cpp
index f245b8f5..2dbfbee6 100644
--- a/src/Display/MenuItem.cpp
+++ b/src/Display/MenuItem.cpp
@@ -9,19 +9,19 @@
#if SUPPORT_12864_LCD
-#include "RepRap.h"
-#include "Heating/Heat.h"
-#include "Platform.h"
-#include "GCodes/GCodes.h"
-#include "Movement/Move.h"
+#include <Platform/RepRap.h>
+#include <Heating/Heat.h>
+#include <Platform/Platform.h>
+#include <GCodes/GCodes.h>
+#include <Movement/Move.h>
#include "Display.h"
-#include "Tools/Tool.h"
-#include "PrintMonitor.h"
+#include <Tools/Tool.h>
+#include <PrintMonitor/PrintMonitor.h>
#ifdef __LPC17xx__
# include "Network.h"
#else
-# include "Networking/Network.h"
+# include <Networking/Network.h>
#endif
MenuItem::MenuItem(PixelNumber r, PixelNumber c, PixelNumber w, Alignment a, FontNumber fn, Visibility vis) noexcept