浏览代码

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 年前
父节点
当前提交
59529b755d
共有 3 个文件被更改,包括 2 次插入2 次删除
  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 查看文件

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

Marlin/Servo.cpp → Marlin/servo.cpp 查看文件

@@ -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

Marlin/Servo.h → Marlin/servo.h 查看文件


正在加载...
取消
保存