Merge pull request #2013 from bq/Fix_lowercase
Fixed lowercase change missing on commit a22a228b.
			
			
This commit is contained in:
		@@ -61,7 +61,7 @@
 | 
				
			|||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#if NUM_SERVOS > 0
 | 
					#if NUM_SERVOS > 0
 | 
				
			||||||
  #include "Servo.h"
 | 
					  #include "servo.h"
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#if HAS_DIGIPOTSS
 | 
					#if HAS_DIGIPOTSS
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -48,7 +48,7 @@
 | 
				
			|||||||
#include <avr/interrupt.h>
 | 
					#include <avr/interrupt.h>
 | 
				
			||||||
#include <Arduino.h>
 | 
					#include <Arduino.h>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include "Servo.h"
 | 
					#include "servo.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define usToTicks(_us)    (( clockCyclesPerMicrosecond()* _us) / 8)     // converts microseconds to tick (assumes prescale of 8)  // 12 Aug 2009
 | 
					#define usToTicks(_us)    (( clockCyclesPerMicrosecond()* _us) / 8)     // converts microseconds to tick (assumes prescale of 8)  // 12 Aug 2009
 | 
				
			||||||
#define ticksToUs(_ticks) (( (unsigned)_ticks * 8)/ clockCyclesPerMicrosecond() ) // converts from ticks back to microseconds
 | 
					#define ticksToUs(_ticks) (( (unsigned)_ticks * 8)/ clockCyclesPerMicrosecond() ) // converts from ticks back to microseconds
 | 
				
			||||||
		Reference in New Issue
	
	Block a user