Search found 3 matches

by mmintz
Mon Jan 10, 2011 9:35 pm
Forum: SUB-20 General Discussion
Topic: Python support?
Replies: 27
Views: 130044

Re: Python support?

Hi Serg, OK, I have it working. Here is some example code (file mdio.py): --------------------- from ctypes import * #need to raise exception if dev_id is 0 def get_device_info (): """ Returnes a string which has the aaa product name and serial number of the mdio interface device """ helper = cdll.L...
by mmintz
Tue Jan 04, 2011 2:53 pm
Forum: SUB-20 General Discussion
Topic: Python support?
Replies: 27
Views: 130044

Re: Python support?

I had tried that. Same behaviour. >>> helper = cdll.LoadLibrary("C:\\Windows/System32/sub20") >>> helper.sub_open () 0 >>> helper.sub_errno() Traceback (most recent call last): File "<pyshell#203>", line 1, in <module> helper.sub_errno() WindowsError: exception: access violation writing 0x0043ED1A
by mmintz
Mon Jan 03, 2011 10:05 pm
Forum: SUB-20 General Discussion
Topic: Python support?
Replies: 27
Views: 130044

Python support?

Hi, Is anyone out there using Python to call the sub20.dll ? I am getting an error: >>>from ctypes import * >>> welper = windll.LoadLibrary("C:\\Windows/System32/sub20") >>> welper.sub_open () 0 >>> welper.sub_errno () Traceback (most recent call last): File "<pyshell#173>", line 1, in <module> welp...