forked from M-Labs/artiq
novatech409b: log sim commands, style
This commit is contained in:
parent
878ab9a39b
commit
01e919dad8
|
@ -65,7 +65,7 @@ class Novatech409B:
|
||||||
# ser_send("F0 1.0") # sets the freq of channel 0 to 1.0 MHz
|
# ser_send("F0 1.0") # sets the freq of channel 0 to 1.0 MHz
|
||||||
|
|
||||||
if self.simulation:
|
if self.simulation:
|
||||||
print(cmd)
|
logger.info("simulation _ser_send(\"%s\")", cmd)
|
||||||
else:
|
else:
|
||||||
self.port.flushInput()
|
self.port.flushInput()
|
||||||
self.port.write((cmd + "\r\n").encode())
|
self.port.write((cmd + "\r\n").encode())
|
||||||
|
@ -81,7 +81,8 @@ class Novatech409B:
|
||||||
errstr = self.error_codes[result]
|
errstr = self.error_codes[result]
|
||||||
except KeyError:
|
except KeyError:
|
||||||
errstr = "Unrecognized reply: '{}'".format(result)
|
errstr = "Unrecognized reply: '{}'".format(result)
|
||||||
s = "Error Code = {ec}, {ecs}".format(ec=result, ecs=errstr)
|
s = "Error Code = {ec}, {ecs}".format(
|
||||||
|
ec=result, ecs=errstr)
|
||||||
raise UnexpectedResponse(s)
|
raise UnexpectedResponse(s)
|
||||||
else:
|
else:
|
||||||
pass
|
pass
|
||||||
|
|
Loading…
Reference in New Issue