1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-10-18 09:50:40 +03:00

Improved accuracy of delayMicroseconds().

This commit is contained in:
David A. Mellis
2005-12-03 17:03:26 +00:00
parent 9e43fe9d4c
commit bbec45d3df
3 changed files with 37 additions and 5 deletions

View File

@@ -19,7 +19,7 @@
Free Software Foundation, Inc., 59 Temple Place, Suite 330,
Boston, MA 02111-1307 USA
$Id: wiring.h,v 1.4 2005/05/24 17:47:41 mellis Exp $
$Id$
*/
#ifndef Wiring_h
@@ -57,7 +57,7 @@ typedef uint8_t byte;
void delay(unsigned long);
void delay_ms(unsigned short ms);
void delayMicroseconds(unsigned long us);
void delayMicroseconds(unsigned int us);
void pinMode(int, int);
void digitalWrite(int, int);
int digitalRead(int);