rigol-ds: Quick hack to fix bug #354.
This commit is contained in:
parent
a9af7b1b8b
commit
05238d2830
|
@ -272,8 +272,13 @@ static struct sr_dev_inst *probe_device(struct sr_scpi_dev_inst *scpi)
|
||||||
gchar *channel_name, **version;
|
gchar *channel_name, **version;
|
||||||
|
|
||||||
if (sr_scpi_get_hw_id(scpi, &hw_info) != SR_OK) {
|
if (sr_scpi_get_hw_id(scpi, &hw_info) != SR_OK) {
|
||||||
sr_info("Couldn't get IDN response.");
|
sr_info("Couldn't get IDN response, retrying.");
|
||||||
return NULL;
|
sr_scpi_close(scpi);
|
||||||
|
sr_scpi_open(scpi);
|
||||||
|
if (sr_scpi_get_hw_id(scpi, &hw_info) != SR_OK) {
|
||||||
|
sr_info("Couldn't get IDN response.");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
for (i = 0; i < ARRAY_SIZE(supported_models); i++) {
|
for (i = 0; i < ARRAY_SIZE(supported_models); i++) {
|
||||||
|
|
Loading…
Reference in New Issue