C++ wrapper: Reset internal USB device pointer on Context::close()
[libftdi] / bindings / ftdi.i
CommitLineData
4c5afeb9
MZ
1/* File: ftdi.i */
2
3%module(docstring="Python interface to libftdi") ftdi
4
50280d45
MZ
5%include <typemaps.i>
6%include <cstring.i>
f5b59bd6 7
05c0dae8 8%typemap(in) unsigned char* = char*;
4c5afeb9 9
05c0dae8
TH
10%ignore ftdi_write_data_async;
11%ignore ftdi_async_complete;
12
b060307c
TJ
13%immutable ftdi_version_info::version_str;
14%immutable ftdi_version_info::snapshot_str;
15
4c5afeb9 16%rename("%(strip:[ftdi_])s") "";
b790d38e 17
50280d45
MZ
18%newobject ftdi_new;
19%typemap(newfree) struct ftdi_context *ftdi "ftdi_free($1);";
20%delobject ftdi_free;
21
22%typemap(in,numinputs=0) SWIGTYPE** OUTPUT ($*ltype temp) %{ $1 = &temp; %}
23%typemap(argout) SWIGTYPE** OUTPUT %{ $result = SWIG_Python_AppendOutput($result, SWIG_NewPointerObj((void*)*$1,$*descriptor,0)); %}
24%apply SWIGTYPE** OUTPUT { struct ftdi_device_list **devlist };
25 int ftdi_usb_find_all(struct ftdi_context *ftdi, struct ftdi_device_list **devlist,
26 int vendor, int product);
27%clear struct ftdi_device_list **devlist;
28
29%apply char *OUTPUT { char * manufacturer, char * description, char * serial };
4c5afeb9
MZ
30%cstring_bounded_output( char * manufacturer, 256 );
31%cstring_bounded_output( char * description, 256 );
32%cstring_bounded_output( char * serial, 256 );
50280d45 33%typemap(default,noblock=1) int mnf_len, int desc_len, int serial_len { $1 = 256; }
4c5afeb9
MZ
34 int ftdi_usb_get_strings(struct ftdi_context *ftdi, struct libusb_device *dev,
35 char * manufacturer, int mnf_len,
36 char * description, int desc_len,
37 char * serial, int serial_len);
50280d45
MZ
38%clear char * manufacturer, char * description, char * serial;
39%clear int mnf_len, int desc_len, int serial_len;
05c0dae8
TH
40
41%apply char *OUTPUT { unsigned char *buf };
42 int ftdi_read_data(struct ftdi_context *ftdi, unsigned char *buf, int size);
43%clear unsigned char *buf;
f0005c33 44
05c0dae8
TH
45%apply int *OUTPUT { unsigned int *chunksize };
46 int ftdi_read_data_get_chunksize(struct ftdi_context *ftdi, unsigned int *chunksize);
47 int ftdi_write_data_get_chunksize(struct ftdi_context *ftdi, unsigned int *chunksize);
48%clear unsigned int *chunksize;
f0005c33 49
05c0dae8
TH
50%apply char *OUTPUT { unsigned char *pins };
51 int ftdi_read_pins(struct ftdi_context *ftdi, unsigned char *pins);
52%clear unsigned char *pins;
f0005c33 53
05c0dae8
TH
54%apply char *OUTPUT { unsigned char *latency };
55 int ftdi_get_latency_timer(struct ftdi_context *ftdi, unsigned char *latency);
f0005c33
TJ
56%clear unsigned char *latency;
57
4c5afeb9 58%apply short *OUTPUT { unsigned short *status };
05c0dae8 59 int ftdi_poll_modem_status(struct ftdi_context *ftdi, unsigned short *status);
f0005c33
TJ
60%clear unsigned short *status;
61
4c5afeb9
MZ
62%apply int *OUTPUT { int* value };
63 int ftdi_get_eeprom_value(struct ftdi_context *ftdi, enum ftdi_eeprom_value value_name, int* value);
64%clear int* value;
f0005c33 65
50280d45
MZ
66%apply char *OUTPUT { unsigned char *buf };
67%typemap(in,numinputs=0) unsigned char *buf(char temp[FTDI_MAX_EEPROM_SIZE]) %{ $1 = ($1_ltype) temp; %}
68%typemap(freearg,match="in") unsigned char *buf "";
69%typemap(argout,fragment="SWIG_FromCharPtrAndSize") unsigned char *buf %{ $result = SWIG_Python_AppendOutput($result, SWIG_FromCharPtrAndSize((char*)$1,FTDI_MAX_EEPROM_SIZE)); %}
70%typemap(default,noblock=1) int size { $1 = 128; }
71 int ftdi_get_eeprom_buf(struct ftdi_context *ftdi, unsigned char * buf, int size);
72%clear unsigned char *buf;
73%clear int size;
74
4c5afeb9
MZ
75%apply short *OUTPUT { unsigned short *eeprom_val };
76 int ftdi_read_eeprom_location (struct ftdi_context *ftdi, int eeprom_addr, unsigned short *eeprom_val);
77%clear unsigned short *eeprom_val;
f0005c33 78
05c0dae8
TH
79%apply int *OUTPUT { unsigned int *chipid };
80 int ftdi_read_chipid(struct ftdi_context *ftdi, unsigned int *chipid);
81%clear unsigned int *chipid;
82
4c5afeb9
MZ
83%include ftdi.h
84%{
85#include <ftdi.h>
86%}
87
88%include ftdi_i.h
89%{
90#include <ftdi_i.h>
91%}