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>2016-12-25 20:35:33 +0300
committerDavid Crocker <dcrocker@eschertech.com>2016-12-25 20:35:47 +0300
commitad8aa69794b76a081d9c504d5f817b87df39e893 (patch)
tree54c738271cf149a09bfea5f184f27d4755da0b6f /src/Fan.cpp
parent81035c9322f35f91831011553eee4bb09edfc737 (diff)
Reduced header file coupling
Restructured the header file inclusion so that the .cpp files are dependent on fewer header files, resulting in less recompilation when most header files are changed
Diffstat (limited to 'src/Fan.cpp')
-rw-r--r--src/Fan.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Fan.cpp b/src/Fan.cpp
index 83c56e45..67206112 100644
--- a/src/Fan.cpp
+++ b/src/Fan.cpp
@@ -5,7 +5,9 @@
* Author: David
*/
-#include "RepRapFirmware.h"
+#include "Fan.h"
+#include "Platform.h"
+#include "RepRap.h"
void Fan::Init(Pin p_pin, bool hwInverted)
{