From 59529b755d6d77671f82c4b3921dd67dab153d06 Mon Sep 17 00:00:00 2001 From: Ivan Galvez Junquera Date: Mon, 4 May 2015 09:44:34 +0200 Subject: [PATCH] Fixed lowercase change missing on commit a22a228b. Servo.cpp and Servo.h were changed to lowercase in Makefile but not their actual filenames. --- Marlin/Marlin_main.cpp | 2 +- Marlin/{Servo.cpp => servo.cpp} | 2 +- Marlin/{Servo.h => servo.h} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename Marlin/{Servo.cpp => servo.cpp} (99%) rename Marlin/{Servo.h => servo.h} (100%) diff --git a/Marlin/Marlin_main.cpp b/Marlin/Marlin_main.cpp index 9541fc8a7..3130870e9 100644 --- a/Marlin/Marlin_main.cpp +++ b/Marlin/Marlin_main.cpp @@ -61,7 +61,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 similarity index 99% rename from Marlin/Servo.cpp rename to Marlin/servo.cpp index 576b394fb..81d73ae87 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 diff --git a/Marlin/Servo.h b/Marlin/servo.h similarity index 100% rename from Marlin/Servo.h rename to Marlin/servo.h