Quellcode durchsuchen

Merge pull request #1985 from Arengorn/Development

Update of servo.h
Scott Lahteine vor 9 Jahren
Ursprung
Commit
31516e2a3b
2 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
  1. 1
    1
      Marlin/Marlin_main.cpp
  2. 1
    1
      Marlin/Servo.cpp

+ 1
- 1
Marlin/Marlin_main.cpp Datei anzeigen

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

+ 1
- 1
Marlin/Servo.cpp Datei anzeigen

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

Laden…
Abbrechen
Speichern