diff --git a/Marlin/Marlin_main.cpp b/Marlin/Marlin_main.cpp index 706367d29..61a9ab282 100644 --- a/Marlin/Marlin_main.cpp +++ b/Marlin/Marlin_main.cpp @@ -60,7 +60,7 @@ #endif #if NUM_SERVOS > 0 - #include "servo.h" + #include "Servo.h" #endif #if HAS_DIGIPOTSS diff --git a/Marlin/Servo.cpp b/Marlin/Servo.cpp index 81d73ae87..576b394fb 100644 --- a/Marlin/Servo.cpp +++ b/Marlin/Servo.cpp @@ -48,7 +48,7 @@ #include #include -#include "servo.h" +#include "Servo.h" #define usToTicks(_us) (( clockCyclesPerMicrosecond()* _us) / 8) // converts microseconds to tick (assumes prescale of 8) // 12 Aug 2009 #define ticksToUs(_ticks) (( (unsigned)_ticks * 8)/ clockCyclesPerMicrosecond() ) // converts from ticks back to microseconds