浏览代码

Update Servo.cpp

Updated "servo.h" to "Servo.h"
Bernardo 9 年前
父节点
当前提交
e449659338
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      Marlin/Servo.cpp

+ 1
- 1
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

正在加载...
取消
保存