rigol-ds1xx2: fix delay time.

This commit is contained in:
Martin Ling 2013-04-21 20:42:22 +01:00
parent 1e2bd8af12
commit e31d410d26
1 changed files with 1 additions and 1 deletions

View File

@ -186,7 +186,7 @@ static int set_cfg(const struct sr_dev_inst *sdi, const char *format, ...)
/* When setting a bunch of parameters in a row, the DS1052E scrambles /* When setting a bunch of parameters in a row, the DS1052E scrambles
* some of them unless there is at least 100ms delay in between. */ * some of them unless there is at least 100ms delay in between. */
sr_spew("delay %dms", 100); sr_spew("delay %dms", 100);
g_usleep(100); g_usleep(100000);
return SR_OK; return SR_OK;
} }