scpi-dmm: Remove SYST:LOC hack for GWInstek meters.
No need for this hack anymymore as there is now DMM_CMD_SETUP_LOCAL command that can be used to return unit back to "local" mode properly.
This commit is contained in:
parent
4c80a27284
commit
860ee00ab1
|
@ -86,7 +86,6 @@ static const struct scpi_command cmdset_gwinstek[] = {
|
|||
{ DMM_CMD_SETUP_FUNC, "CONF:%s", },
|
||||
{ DMM_CMD_QUERY_FUNC, "CONF:STAT:FUNC?", },
|
||||
{ DMM_CMD_START_ACQ, "*CLS;SYST:REM", },
|
||||
{ DMM_CMD_STOP_ACQ, "SYST:LOC", },
|
||||
{ DMM_CMD_QUERY_VALUE, "VAL1?", },
|
||||
{ DMM_CMD_QUERY_PREC, "SENS:DET:RATE?", },
|
||||
ALL_ZERO,
|
||||
|
@ -97,8 +96,8 @@ static const struct scpi_command cmdset_gwinstek_906x[] = {
|
|||
{ DMM_CMD_SETUP_LOCAL, "SYST:LOC", },
|
||||
{ DMM_CMD_SETUP_FUNC, "CONF:%s", },
|
||||
{ DMM_CMD_QUERY_FUNC, "CONF?", },
|
||||
{ DMM_CMD_START_ACQ, "*CLS;SYST:REM", },
|
||||
{ DMM_CMD_STOP_ACQ, "SYST:LOC", },
|
||||
{ DMM_CMD_START_ACQ, "INIT", },
|
||||
{ DMM_CMD_STOP_ACQ, "ABORT", },
|
||||
{ DMM_CMD_QUERY_VALUE, "VAL1?", },
|
||||
{ DMM_CMD_QUERY_PREC, "SENS:DET:RATE?", },
|
||||
ALL_ZERO,
|
||||
|
|
Loading…
Reference in New Issue