Rename library from libftdi to libftdi1
[libftdi] / bindings / ftdi.i
1 /* File: ftdi.i */
2
3 %module(docstring="Python interface to libftdi1") ftdi
4
5 %include <typemaps.i>
6 %include <cstring.i>
7
8 %typemap(in) unsigned char* = char*;
9
10 %ignore ftdi_write_data_async;
11 %ignore ftdi_async_complete;
12
13 %immutable ftdi_version_info::version_str;
14 %immutable ftdi_version_info::snapshot_str;
15
16 %rename("%(strip:[ftdi_])s") "";
17
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 };
30 %cstring_bounded_output( char * manufacturer, 256 );
31 %cstring_bounded_output( char * description, 256 );
32 %cstring_bounded_output( char * serial, 256 );
33 %typemap(default,noblock=1) int mnf_len, int desc_len, int serial_len { $1 = 256; }
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);
38 %clear char * manufacturer, char * description, char * serial;
39 %clear int mnf_len, int desc_len, int serial_len;
40
41 %typemap(in,numinputs=1) (unsigned char *buf, int size) %{ $2 = PyInt_AsLong($input);$1 = (unsigned char*)malloc($2*sizeof(char)); %}
42 %typemap(argout) (unsigned char *buf, int size) %{ if(result<0) $2=0; $result = SWIG_Python_AppendOutput($result, PyString_FromStringAndSize((char*)$1, $2)); free($1); %}
43     int ftdi_read_data(struct ftdi_context *ftdi, unsigned char *buf, int size);
44 %clear (unsigned char *buf, int size);
45
46 %apply int *OUTPUT { unsigned int *chunksize };
47     int ftdi_read_data_get_chunksize(struct ftdi_context *ftdi, unsigned int *chunksize);
48     int ftdi_write_data_get_chunksize(struct ftdi_context *ftdi, unsigned int *chunksize);
49 %clear unsigned int *chunksize;
50
51 %apply char *OUTPUT { unsigned char *pins };
52     int ftdi_read_pins(struct ftdi_context *ftdi, unsigned char *pins);
53 %clear unsigned char *pins;
54
55 %apply char *OUTPUT { unsigned char *latency };
56     int ftdi_get_latency_timer(struct ftdi_context *ftdi, unsigned char *latency);
57 %clear unsigned char *latency;
58
59 %apply short *OUTPUT { unsigned short *status };
60     int ftdi_poll_modem_status(struct ftdi_context *ftdi, unsigned short *status);
61 %clear unsigned short *status;
62
63 %apply int *OUTPUT { int* value };
64     int ftdi_get_eeprom_value(struct ftdi_context *ftdi, enum ftdi_eeprom_value value_name, int* value);
65 %clear int* value;
66
67 %typemap(in,numinputs=1) (unsigned char *buf, int size) %{ $2 = PyInt_AsLong($input);$1 = (unsigned char*)malloc($2*sizeof(char)); %}
68 %typemap(argout) (unsigned char *buf, int size) %{ if(result<0) $2=0; $result = SWIG_Python_AppendOutput($result, PyString_FromStringAndSize((char*)$1, $2)); free($1); %}
69     int ftdi_get_eeprom_buf(struct ftdi_context *ftdi, unsigned char * buf, int size);
70 %clear (unsigned char *buf, int size);
71
72 %apply short *OUTPUT { unsigned short *eeprom_val };
73     int ftdi_read_eeprom_location (struct ftdi_context *ftdi, int eeprom_addr, unsigned short *eeprom_val);
74 %clear unsigned short *eeprom_val;
75
76 %apply int *OUTPUT { unsigned int *chipid };
77     int ftdi_read_chipid(struct ftdi_context *ftdi, unsigned int *chipid);
78 %clear unsigned int *chipid;
79
80 %include ftdi.h
81 %{
82 #include <ftdi.h>
83 %}
84
85 %include ftdi_i.h
86 %{
87 #include <ftdi_i.h>
88 %}