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.
Ivan Galvez Junquera 9 years ago
parent
commit
59529b755d
3 changed files with 2 additions and 2 deletions
  1. 1
    1
      Marlin/Marlin_main.cpp
  2. 1
    1
      Marlin/servo.cpp
  3. 0
    0
      Marlin/servo.h

+ 1
- 1
Marlin/Marlin_main.cpp View File

61
 #endif
61
 #endif
62
 
62
 
63
 #if NUM_SERVOS > 0
63
 #if NUM_SERVOS > 0
64
-  #include "Servo.h"
64
+  #include "servo.h"
65
 #endif
65
 #endif
66
 
66
 
67
 #if HAS_DIGIPOTSS
67
 #if HAS_DIGIPOTSS

Marlin/Servo.cpp → Marlin/servo.cpp View File

48
 #include <avr/interrupt.h>
48
 #include <avr/interrupt.h>
49
 #include <Arduino.h>
49
 #include <Arduino.h>
50
 
50
 
51
-#include "Servo.h"
51
+#include "servo.h"
52
 
52
 
53
 #define usToTicks(_us)    (( clockCyclesPerMicrosecond()* _us) / 8)     // converts microseconds to tick (assumes prescale of 8)  // 12 Aug 2009
53
 #define usToTicks(_us)    (( clockCyclesPerMicrosecond()* _us) / 8)     // converts microseconds to tick (assumes prescale of 8)  // 12 Aug 2009
54
 #define ticksToUs(_ticks) (( (unsigned)_ticks * 8)/ clockCyclesPerMicrosecond() ) // converts from ticks back to microseconds
54
 #define ticksToUs(_ticks) (( (unsigned)_ticks * 8)/ clockCyclesPerMicrosecond() ) // converts from ticks back to microseconds

Marlin/Servo.h → Marlin/servo.h View File


Loading…
Cancel
Save