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/Hardware
parentce2e74bc10a7ee558bfb2e7dcac3e8352ac253c5 (diff)
Created Platform and PrintMonitor folders within /src
Diffstat (limited to 'src/Hardware')
-rw-r--r--src/Hardware/ExceptionHandlers.cpp4
-rw-r--r--src/Hardware/I2C.cpp2
-rw-r--r--src/Hardware/I2C.h4
-rw-r--r--src/Hardware/IoPorts.cpp10
-rw-r--r--src/Hardware/SAME5x/Devices.cpp2
-rw-r--r--src/Hardware/SAME5x/Ethernet/GmacInterface.cpp2
-rw-r--r--src/Hardware/SAME70/Ethernet/GmacInterface.cpp6
-rw-r--r--src/Hardware/SoftwareReset.cpp6
-rw-r--r--src/Hardware/SoftwareReset.h2
9 files changed, 19 insertions, 19 deletions
diff --git a/src/Hardware/ExceptionHandlers.cpp b/src/Hardware/ExceptionHandlers.cpp
index 1dda86ee..24a25bba 100644
--- a/src/Hardware/ExceptionHandlers.cpp
+++ b/src/Hardware/ExceptionHandlers.cpp
@@ -6,8 +6,8 @@
*/
#include "ExceptionHandlers.h"
-#include <RepRap.h>
-#include <Platform.h>
+#include <Platform/RepRap.h>
+#include <Platform/Platform.h>
#include <Hardware/NonVolatileMemory.h>
#include <Cache.h>
#if SAME70 || SAM4S || SAM4E
diff --git a/src/Hardware/I2C.cpp b/src/Hardware/I2C.cpp
index 50db157b..55005f13 100644
--- a/src/Hardware/I2C.cpp
+++ b/src/Hardware/I2C.cpp
@@ -6,7 +6,7 @@
*/
#include "I2C.h"
-#include "Tasks.h"
+#include <Platform/Tasks.h>
#if defined(I2C_IFACE)
static bool i2cInitialised = false;
diff --git a/src/Hardware/I2C.h b/src/Hardware/I2C.h
index 12a57799..4fa87ecf 100644
--- a/src/Hardware/I2C.h
+++ b/src/Hardware/I2C.h
@@ -8,8 +8,8 @@
#ifndef SRC_HARDWARE_I2C_H_
#define SRC_HARDWARE_I2C_H_
-#include "RepRapFirmware.h"
-#include "Tasks.h"
+#include <RepRapFirmware.h>
+#include <Platform/Tasks.h>
#ifdef I2C_IFACE
# include "Wire.h"
diff --git a/src/Hardware/IoPorts.cpp b/src/Hardware/IoPorts.cpp
index 91495264..c822a72c 100644
--- a/src/Hardware/IoPorts.cpp
+++ b/src/Hardware/IoPorts.cpp
@@ -6,13 +6,13 @@
*/
#include "IoPorts.h"
-#include "RepRap.h"
-#include "Platform.h"
-#include "Configuration.h"
-#include "GCodes/GCodeBuffer/GCodeBuffer.h"
+#include <Platform/RepRap.h>
+#include <Platform/Platform.h>
+#include <Configuration.h>
+#include <GCodes/GCodeBuffer/GCodeBuffer.h>
#ifdef DUET_NG
-# include "DuetNG/DueXn.h"
+# include <DuetNG/DueXn.h>
#endif
#include <AnalogOut.h>
diff --git a/src/Hardware/SAME5x/Devices.cpp b/src/Hardware/SAME5x/Devices.cpp
index 54ee3b1f..23a335e4 100644
--- a/src/Hardware/SAME5x/Devices.cpp
+++ b/src/Hardware/SAME5x/Devices.cpp
@@ -10,7 +10,7 @@
#include <RepRapFirmware.h>
#include <AnalogIn.h>
#include <AnalogOut.h>
-#include <TaskPriorities.h>
+#include <Platform/TaskPriorities.h>
#include <hal_gpio.h>
#include <hal_usb_device.h>
diff --git a/src/Hardware/SAME5x/Ethernet/GmacInterface.cpp b/src/Hardware/SAME5x/Ethernet/GmacInterface.cpp
index 3e67ac1c..f555f1ae 100644
--- a/src/Hardware/SAME5x/Ethernet/GmacInterface.cpp
+++ b/src/Hardware/SAME5x/Ethernet/GmacInterface.cpp
@@ -26,7 +26,7 @@ extern "C" {
#include <RepRapFirmware.h>
#include <RTOSIface/RTOSIface.h>
-#include <TaskPriorities.h>
+#include <Platform/TaskPriorities.h>
extern Mutex lwipMutex;
diff --git a/src/Hardware/SAME70/Ethernet/GmacInterface.cpp b/src/Hardware/SAME70/Ethernet/GmacInterface.cpp
index 540c6b76..e91541b7 100644
--- a/src/Hardware/SAME70/Ethernet/GmacInterface.cpp
+++ b/src/Hardware/SAME70/Ethernet/GmacInterface.cpp
@@ -32,9 +32,9 @@
*/
#include "GmacInterface.h"
-#include "pmc/pmc.h"
+#include <pmc/pmc.h>
-#include "conf_eth.h"
+#include <conf_eth.h>
#include <cstring>
extern "C" {
@@ -53,7 +53,7 @@ extern "C" {
#include <RepRapFirmware.h>
#include <RTOSIface/RTOSIface.h>
-#include <TaskPriorities.h>
+#include <Platform/TaskPriorities.h>
extern Mutex lwipMutex;
diff --git a/src/Hardware/SoftwareReset.cpp b/src/Hardware/SoftwareReset.cpp
index f1e7bdf7..48831178 100644
--- a/src/Hardware/SoftwareReset.cpp
+++ b/src/Hardware/SoftwareReset.cpp
@@ -6,9 +6,9 @@
*/
#include "SoftwareReset.h"
-#include <Tasks.h>
-#include <RepRap.h>
-#include <Platform.h>
+#include <Platform/Tasks.h>
+#include <Platform/RepRap.h>
+#include <Platform/Platform.h>
#include <General/Portability.h>
extern uint32_t _estack; // defined in the linker script
diff --git a/src/Hardware/SoftwareReset.h b/src/Hardware/SoftwareReset.h
index 6630694d..b7179a07 100644
--- a/src/Hardware/SoftwareReset.h
+++ b/src/Hardware/SoftwareReset.h
@@ -9,7 +9,7 @@
#define SRC_SOFTWARERESET_H_
#include <RepRapFirmware.h>
-#include <MessageType.h>
+#include <Platform/MessageType.h>
#if SAM3XA
# include <DueFlashStorage.h>