X-Git-Url: http://developer.intra2net.com/git/?p=libftdi;a=blobdiff_plain;f=examples%2Fserial_test.c;h=0631504048a8d810cbb0f8a2ed5246eca1a87eca;hp=afdc07c20c760dea3ed3218ef0507b66cbdff5fa;hb=db9c7eba8ff28219a33b5494a3d60aa487d87ef1;hpb=275e7caece3acd901d59b6eec9015aec8f782bfb diff --git a/examples/serial_test.c b/examples/serial_test.c index afdc07c..0631504 100644 --- a/examples/serial_test.c +++ b/examples/serial_test.c @@ -28,7 +28,7 @@ int main(int argc, char **argv) { struct ftdi_context *ftdi; unsigned char buf[1024]; - int f, i; + int f = 0, i; int vid = 0x403; int pid = 0; int baudrate = 115200; @@ -134,7 +134,7 @@ int main(int argc, char **argv) * * TODO: Make these parameters settable from the command line * - * Parameters are choosen that sending a continous stream of 0x55 + * Parameters are chosen that sending a continuous stream of 0x55 * should give a square wave * */ @@ -159,7 +159,7 @@ int main(int argc, char **argv) else f = ftdi_read_data(ftdi, buf, sizeof(buf)); if (f<0) - sleep(1); + usleep(1 * 1000000); else if(f> 0 && !do_write) { fprintf(stderr, "read %d bytes\n", f);