configbackup, configrestore

This commit is contained in:
Ian Gulliver
2016-04-23 15:59:14 -07:00
parent 768aa532d0
commit baabd79d28

View File

@@ -59,14 +59,10 @@ class CommandError(Error):
# set5vbias
# setwireless
# configbackup
# configrestore
# setwflisten
# setmodelname
# setwflisten
class ILT1000(object):
@@ -382,6 +378,12 @@ class ILT1000(object):
def GetIntegrate(self):
return float(self._SendCommand('getintegrate'))
def BackupConfig(self):
self._SendCommandOrDie('configbackup')
def RestoreConfig(self):
self._SendCommandOrDie('configrestore')
class _Row(object):