diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2011-06-05 07:52:56 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2011-06-05 07:52:56 +0200 |
commit | 01a71e9ada1bb48796c1856282054897a067899f (patch) | |
tree | 20ad2cf4d12f2745f262dcd03b926e5c93429363 | |
parent | 036bcb8da90fa19b4a6270da4b4b0df5806f2a39 (diff) | |
download | k8055-01a71e9ada1bb48796c1856282054897a067899f.zip k8055-01a71e9ada1bb48796c1856282054897a067899f.tar.gz |
fix function prefix missing in pyk8055
-rw-r--r-- | pyk8055/libk8055.i | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyk8055/libk8055.i b/pyk8055/libk8055.i index 7e35c9b..f788df3 100644 --- a/pyk8055/libk8055.i +++ b/pyk8055/libk8055.i @@ -128,7 +128,7 @@ class k8055: returns 0 if OK, Throws IOError if invalid board or not accessible """ - if _pyk8055.open_device(self.dev,BoardAddress) == K8055_ERROR: + if _pyk8055.k8055_open_device(self.dev,BoardAddress) == K8055_ERROR: raise IOError, "Could not open device" # print "Open OK " + str(self.dev) return 0 |