mirror of
https://github.com/arduino/Arduino.git
synced 2024-11-29 10:24:12 +01:00
Renamed delayMicro() to delayMicroseconds()
This commit is contained in:
parent
7fbb37cbe0
commit
11aca24b1f
@ -267,7 +267,7 @@ void delay(unsigned long ms)
|
||||
timerPause(ms);
|
||||
}
|
||||
|
||||
void delayMicro(unsigned long us)
|
||||
void delayMicroseconds(unsigned long us)
|
||||
{
|
||||
delay_us(us);
|
||||
}
|
||||
|
@ -57,7 +57,7 @@ typedef uint8_t byte;
|
||||
|
||||
void delay(unsigned long);
|
||||
void delay_ms(unsigned short ms);
|
||||
void delayMicro(unsigned long us);
|
||||
void delayMicroseconds(unsigned long us);
|
||||
void pinMode(int, int);
|
||||
void digitalWrite(int, int);
|
||||
int digitalRead(int);
|
||||
|
Loading…
Reference in New Issue
Block a user