- sleep statement inserted to reduce cpu load

git-svn-id: https://svn.code.sf.net/p/libusbjava/code/trunk@70 94ad28fe-ef68-46b1-9651-e7ae4fcf1c4c
This commit is contained in:
schlaepfer
2006-01-09 09:15:32 +00:00
parent 7681d7a4ea
commit 56b8e863d1

View File

@@ -36,8 +36,11 @@ public class UartTest {
System.out.print((char) buffer[i]);
}
}
Thread.sleep(50);
} catch (IOException e) {
e.printStackTrace();
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}