f26a334da93a37fb7c477bfed9a4a712c71ed5c1
[libftdi] / bindings / ftdi1.i
1 /* File: ftdi1.i */
2
3 %module(docstring="Python interface to libftdi1") ftdi1
4
5 %include <typemaps.i>
6 %include <cstring.i>
7
8 %typemap(in) unsigned char* = char*;
9
10 %immutable ftdi_version_info::version_str;
11 %immutable ftdi_version_info::snapshot_str;
12
13 %rename("%(strip:[ftdi_])s") "";
14
15 %newobject ftdi_new;
16 %typemap(newfree) struct ftdi_context *ftdi "ftdi_free($1);";
17 %delobject ftdi_free;
18
19 %typemap(in,numinputs=0) SWIGTYPE** OUTPUT ($*ltype temp) %{ $1 = &temp; %}
20 %typemap(argout) SWIGTYPE** OUTPUT %{ $result = SWIG_Python_AppendOutput($result, SWIG_NewPointerObj((void*)*$1,$*descriptor,0)); %}
21 %apply SWIGTYPE** OUTPUT { struct ftdi_device_list **devlist };
22     int ftdi_usb_find_all(struct ftdi_context *ftdi, struct ftdi_device_list **devlist,
23                           int vendor, int product);
24 %clear struct ftdi_device_list **devlist;
25
26 %apply char *OUTPUT { char * manufacturer, char * description, char * serial };
27 %cstring_bounded_output( char * manufacturer, 256 );
28 %cstring_bounded_output( char * description, 256 );
29 %cstring_bounded_output( char * serial, 256 );
30 %typemap(default,noblock=1) int mnf_len, int desc_len, int serial_len { $1 = 256; }
31     int ftdi_usb_get_strings(struct ftdi_context *ftdi, struct libusb_device *dev,
32                              char * manufacturer, int mnf_len,
33                              char * description, int desc_len,
34                              char * serial, int serial_len);
35 %clear char * manufacturer, char * description, char * serial;
36 %clear int mnf_len, int desc_len, int serial_len;
37
38 %typemap(in,numinputs=1) (unsigned char *buf, int size) %{ $2 = PyInt_AsLong($input);$1 = (unsigned char*)malloc($2*sizeof(char)); %}
39 %typemap(argout) (unsigned char *buf, int size) %{ if(result<0) $2=0; $result = SWIG_Python_AppendOutput($result, PyString_FromStringAndSize((char*)$1, $2)); free($1); %}
40     int ftdi_read_data(struct ftdi_context *ftdi, unsigned char *buf, int size);
41 %clear (unsigned char *buf, int size);
42
43 %apply int *OUTPUT { unsigned int *chunksize };
44     int ftdi_read_data_get_chunksize(struct ftdi_context *ftdi, unsigned int *chunksize);
45     int ftdi_write_data_get_chunksize(struct ftdi_context *ftdi, unsigned int *chunksize);
46 %clear unsigned int *chunksize;
47
48 %apply char *OUTPUT { unsigned char *pins };
49     int ftdi_read_pins(struct ftdi_context *ftdi, unsigned char *pins);
50 %clear unsigned char *pins;
51
52 %apply char *OUTPUT { unsigned char *latency };
53     int ftdi_get_latency_timer(struct ftdi_context *ftdi, unsigned char *latency);
54 %clear unsigned char *latency;
55
56 %apply short *OUTPUT { unsigned short *status };
57     int ftdi_poll_modem_status(struct ftdi_context *ftdi, unsigned short *status);
58 %clear unsigned short *status;
59
60 %apply int *OUTPUT { int* value };
61     int ftdi_get_eeprom_value(struct ftdi_context *ftdi, enum ftdi_eeprom_value value_name, int* value);
62 %clear int* value;
63
64 %typemap(in,numinputs=1) (unsigned char *buf, int size) %{ $2 = PyInt_AsLong($input);$1 = (unsigned char*)malloc($2*sizeof(char)); %}
65 %typemap(argout) (unsigned char *buf, int size) %{ if(result<0) $2=0; $result = SWIG_Python_AppendOutput($result, PyString_FromStringAndSize((char*)$1, $2)); free($1); %}
66     int ftdi_get_eeprom_buf(struct ftdi_context *ftdi, unsigned char * buf, int size);
67 %clear (unsigned char *buf, int size);
68
69 %apply short *OUTPUT { unsigned short *eeprom_val };
70     int ftdi_read_eeprom_location (struct ftdi_context *ftdi, int eeprom_addr, unsigned short *eeprom_val);
71 %clear unsigned short *eeprom_val;
72
73 %apply int *OUTPUT { unsigned int *chipid };
74     int ftdi_read_chipid(struct ftdi_context *ftdi, unsigned int *chipid);
75 %clear unsigned int *chipid;
76
77 %include ftdi.h
78 %{
79 #include <ftdi.h>
80 %}
81
82 %include ftdi_i.h
83 %{
84 #include <ftdi_i.h>
85 %}