1
0
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:
David A. Mellis 2005-09-27 14:39:03 +00:00
parent 7fbb37cbe0
commit 11aca24b1f
2 changed files with 2 additions and 2 deletions

View File

@ -267,7 +267,7 @@ void delay(unsigned long ms)
timerPause(ms);
}
void delayMicro(unsigned long us)
void delayMicroseconds(unsigned long us)
{
delay_us(us);
}

View File

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