diff options
author | mzuther <mzuther@3ae390bd-cb1e-0410-b409-cd5a39f66f1f> | 2010-02-15 21:44:43 +0000 |
---|---|---|
committer | mzuther <mzuther@3ae390bd-cb1e-0410-b409-cd5a39f66f1f> | 2010-02-15 21:44:43 +0000 |
commit | 0bffa599cc6501471fcf97ea331f6ebd458fdadc (patch) | |
tree | 372f5147542d03753fd5eb93019d06f393be7d2b /drv_picoLCDGraphic.c | |
parent | 3d85ed2b1731a7bef0f57fe6d70136c4f9fa6cc5 (diff) | |
download | lcd4linux-0bffa599cc6501471fcf97ea331f6ebd458fdadc.tar.gz |
drv_picoLCDGraphic.c: minimum USB read timeout is now 1 ms
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@1114 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'drv_picoLCDGraphic.c')
-rw-r--r-- | drv_picoLCDGraphic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drv_picoLCDGraphic.c b/drv_picoLCDGraphic.c index f136a79..ccac030 100644 --- a/drv_picoLCDGraphic.c +++ b/drv_picoLCDGraphic.c @@ -471,7 +471,7 @@ static int drv_pLG_start(const char *section, const int quiet) /* USB read timeout in ms (the picoLCD 256x64 times out on every read unless a key has been pressed!) */ - cfg_number(section, "Timeout", 5, 0, -1, &read_timeout); + cfg_number(section, "Timeout", 5, 1, 1000, &read_timeout); s = cfg_get(section, "Size", NULL); if (s == NULL || *s == '\0') { |