Procházet zdrojové kódy

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 před 10 roky
rodič
revize
59529b755d
3 změnil soubory, kde provedl 2 přidání a 2 odebrání
  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 Zobrazit soubor

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 Zobrazit soubor

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 Zobrazit soubor


Loading…
Zrušit
Uložit