Fix typos
[libftdi] / examples / serial_test.c
index afdc07c..0631504 100644 (file)
@@ -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);