Browse Source

Fixed lowercase change missing on commit a22a228b.

Servo.cpp and Servo.h were changed to lowercase in Makefile but not their actual filenames.
pull/1/head
Ivan Galvez Junquera 9 years ago
parent
commit
59529b755d
  1. 2
      Marlin/Marlin_main.cpp
  2. 2
      Marlin/servo.cpp
  3. 0
      Marlin/servo.h

2
Marlin/Marlin_main.cpp

@ -61,7 +61,7 @@
#endif
#if NUM_SERVOS > 0
#include "Servo.h"
#include "servo.h"
#endif
#if HAS_DIGIPOTSS

2
Marlin/Servo.cpp → 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

0
Marlin/Servo.h → Marlin/servo.h

Loading…
Cancel
Save