1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-07-30 16:24:09 +03:00

Added delayMicro()

This commit is contained in:
David A. Mellis
2005-09-20 13:47:51 +00:00
parent 59adc64ba6
commit 278d609ef2
2 changed files with 6 additions and 0 deletions

View File

@ -267,6 +267,11 @@ void delay(unsigned long ms)
timerPause(ms);
}
void delayMicro(unsigned long us)
{
delay_us(us);
}
int main(void)
{
sei();