From ff67ee73fcfbf3c2926367bd70c6614ad264fdb6 Mon Sep 17 00:00:00 2001
From: Bernardo <pbccmm@gmail.com>
Date: Mon, 27 Apr 2015 23:29:16 -0300
Subject: [PATCH 1/2] Update Marlin_main.cpp

Corrected "servo.h" to "Servo.h" because of the updated filename.
---
 Marlin/Marlin_main.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Marlin/Marlin_main.cpp b/Marlin/Marlin_main.cpp
index ac86cb05b7e..0ea5d8c3c9f 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

From e44965933885da6f598436259e838e3576c7eeae Mon Sep 17 00:00:00 2001
From: Bernardo <pbccmm@gmail.com>
Date: Mon, 27 Apr 2015 23:30:11 -0300
Subject: [PATCH 2/2] Update Servo.cpp

Updated "servo.h" to "Servo.h"
---
 Marlin/Servo.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Marlin/Servo.cpp b/Marlin/Servo.cpp
index 81d73ae8707..576b394fb70 100644
--- a/Marlin/Servo.cpp
+++ b/Marlin/Servo.cpp
@@ -48,7 +48,7 @@
 #include <avr/interrupt.h>
 #include <Arduino.h>
 
-#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