PropWare  3.0.0.229
C++ objects and CMake build system for Parallax Propeller
pause_us.c
Go to the documentation of this file.
1 
17 #include "simpletools.h" // simpletools function prototypes
18 
19 void pause_us(unsigned int microseconds) // pause function definition
20 {
21  usleep(microseconds);
22 }
23 
simpletools.h
This library provides convenient functions for a variety of microcontroller I/O, timing,...