summaryrefslogtreecommitdiffstats
path: root/hcid
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2006-02-25 01:11:11 +0000
committerMarcel Holtmann <marcel@holtmann.org>2006-02-25 01:11:11 +0000
commit42e4202d2c8deed9a6d869f8b8b5e9902bf008bd (patch)
tree094197dd24f062795073d35bbc0e1c709af7b05f /hcid
parent96a5e0e46dcb8b6274ee3467fb45ed54a40c87a8 (diff)
Add missing remote methods
Diffstat (limited to 'hcid')
-rwxr-xr-xhcid/dbus-test15
1 files changed, 15 insertions, 0 deletions
diff --git a/hcid/dbus-test b/hcid/dbus-test
index a092affe..10aad683 100755
--- a/hcid/dbus-test
+++ b/hcid/dbus-test
@@ -268,6 +268,21 @@ class Tester:
print self.device.GetRemoteVersion(self.cmd_args[0])
else:
print 'Usage: %s -i <dev> GetRemoteVersion address' % self.name
+ elif self.cmd == 'GetRemoteRevision':
+ if len(self.cmd_args) == 1:
+ print self.device.GetRemoteRevision(self.cmd_args[0])
+ else:
+ print 'Usage: %s -i <dev> GetRemoteRevision address' % self.name
+ elif self.cmd == 'GetRemoteManufacturer':
+ if len(self.cmd_args) == 1:
+ print self.device.GetRemoteManufacturer(self.cmd_args[0])
+ else:
+ print 'Usage: %s -i <dev> GetRemoteManufacturer address' % self.name
+ elif self.cmd == 'GetRemoteCompany':
+ if len(self.cmd_args) == 1:
+ print self.device.GetRemoteCompany(self.cmd_args[0])
+ else:
+ print 'Usage: %s -i <dev> GetRemoteCompany address' % self.name
elif self.cmd == 'GetRemoteAlias':
if len(self.cmd_args) == 1:
print self.device.GetRemoteAlias(self.cmd_args[0])