ChangeLog: Add license clarifications
[libftdi] / ftdipp / ftdi.hpp
CommitLineData
cdf448f6
TJ
1/***************************************************************************
2 ftdi.hpp - C++ wrapper for libftdi
3 -------------------
4 begin : Mon Oct 13 2008
9341a7e8 5 copyright : (C) 2008-2026 by Marek Vavruša and libftdi developers
cdf448f6
TJ
6 email : opensource@intra2net.com and marek@vavrusa.com
7 ***************************************************************************/
3ab8f642 8/*
79646368 9Copyright (C) 2008-2017 by Marek Vavruša and libftdi developers
cdf448f6 10
3ab8f642
TJ
11The software in this package is distributed under the GNU General
12Public License version 2 (with a special exception described below).
13
14A copy of GNU General Public License (GPL) is included in this distribution,
15in the file COPYING.GPL.
16
17As a special exception, if other files instantiate templates or use macros
18or inline functions from this file, or you compile this file and link it
19with other works to produce a work based on this file, this file
20does not by itself cause the resulting work to be covered
21by the GNU General Public License.
22
23However the source code for this file must still be made available
24in accordance with section (3) of the GNU General Public License.
cdf448f6 25
3ab8f642
TJ
26This exception does not invalidate any other reasons why a work based
27on this file might be covered by the GNU General Public License.
28*/
cdf448f6
TJ
29#ifndef __libftdi_hpp__
30#define __libftdi_hpp__
20b1459a
TJ
31
32#include <list>
33#include <string>
cfaec73e 34#include <memory>
69bb2d7a 35#include <ftdi.h>
20b1459a
TJ
36
37namespace Ftdi
38{
39
40/* Forward declarations*/
41class List;
42class Eeprom;
43
44/*! \brief FTDI device context.
45 * Represents single FTDI device context.
46 */
47class Context
48{
cdf448f6
TJ
49 /* Friends */
50 friend class Eeprom;
51 friend class List;
52
53public:
54 /*! \brief Direction flags for flush().
55 */
56 enum Direction
57 {
26537a2d
ES
58 Input = 0x2,
59 Output = 0x1,
cdf448f6
TJ
60 };
61
62 /*! \brief Modem control flags.
63 */
64 enum ModemCtl
65 {
26537a2d
ES
66 Dtr = 0x2,
67 Rts = 0x1,
cdf448f6
TJ
68 };
69
70 /* Constructor, Destructor */
71 Context();
72 ~Context();
73
74 /* Properties */
75 Eeprom* eeprom();
76 const std::string& vendor();
77 const std::string& description();
78 const std::string& serial();
79
80 /* Device manipulators */
81 bool is_open();
579b006f 82 int open(struct libusb_device *dev = 0);
58cce2d4
GE
83 int open(int vendor, int product);
84 int open(int vendor, int product, const std::string& description, const std::string& serial = std::string(), unsigned int index=0);
85 int open(const std::string& description);
cdf448f6
TJ
86 int close();
87 int reset();
ed46f09c
ES
88 int DEPRECATED(flush)(int mask = Input|Output);
89 int tcflush(int mask = Input|Output);
cdf448f6 90 int set_interface(enum ftdi_interface interface);
06fa7fa3 91 int set_module_detach_mode(enum ftdi_module_detach_mode mode);
579b006f 92 void set_usb_device(struct libusb_device_handle *dev);
cdf448f6
TJ
93
94 /* Line manipulators */
95 int set_baud_rate(int baudrate);
96 int set_line_property(enum ftdi_bits_type bits, enum ftdi_stopbits_type sbit, enum ftdi_parity_type parity);
97 int set_line_property(enum ftdi_bits_type bits, enum ftdi_stopbits_type sbit, enum ftdi_parity_type parity, enum ftdi_break_type break_type);
73a71502
JS
98 int get_usb_read_timeout() const;
99 void set_usb_read_timeout(int usb_read_timeout);
100 int get_usb_write_timeout() const;
101 void set_usb_write_timeout(int usb_write_timeout);
cdf448f6
TJ
102
103 /* I/O */
104 int read(unsigned char *buf, int size);
fb56d9cf 105 int write(const unsigned char *buf, int size);
cdf448f6
TJ
106 int set_read_chunk_size(unsigned int chunksize);
107 int set_write_chunk_size(unsigned int chunksize);
108 int read_chunk_size();
109 int write_chunk_size();
110
111 /* Async IO
112 TODO: should wrap?
fb56d9cf 113 int writeAsync(const unsigned char *buf, int size);
cdf448f6
TJ
114 void asyncComplete(int wait_for_more);
115 */
116
117 /* Flow control */
118 int set_event_char(unsigned char eventch, unsigned char enable);
119 int set_error_char(unsigned char errorch, unsigned char enable);
120 int set_flow_control(int flowctrl);
121 int set_modem_control(int mask = Dtr|Rts);
122 int set_latency(unsigned char latency);
123 int set_dtr(bool state);
124 int set_rts(bool state);
125
126 unsigned short poll_modem_status();
127 unsigned latency();
128
129 /* BitBang mode */
130 int set_bitmode(unsigned char bitmask, unsigned char mode);
58cce2d4 131 int set_bitmode(unsigned char bitmask, enum ftdi_mpsse_mode mode);
cdf448f6
TJ
132 int bitbang_disable();
133 int read_pins(unsigned char *pins);
134
135 /* Misc */
c45d2630 136 const char* error_string();
cdf448f6
TJ
137
138protected:
5a7f320d
MJ
139 int get_strings(bool vendor=true, bool description=true, bool serial=true);
140 int get_strings_and_reopen(bool vendor=true, bool description=true, bool serial=true);
cdf448f6
TJ
141
142 /* Properties */
143 struct ftdi_context* context();
144 void set_context(struct ftdi_context* context);
579b006f 145 void set_usb_device(struct libusb_device *dev);
cdf448f6
TJ
146
147private:
148 class Private;
cfaec73e 149 std::shared_ptr<Private> d;
20b1459a
TJ
150};
151
152/*! \brief Device EEPROM.
153 */
154class Eeprom
155{
cdf448f6
TJ
156public:
157 Eeprom(Context* parent);
158 ~Eeprom();
159
f14f84d3 160 int init_defaults(char *manufacturer, char* product, char * serial);
cdf448f6
TJ
161 int chip_id(unsigned int *chipid);
162 int build(unsigned char *output);
449c87a9 163
cdf448f6
TJ
164 int read(unsigned char *eeprom);
165 int write(unsigned char *eeprom);
449c87a9
TJ
166 int read_location(int eeprom_addr, unsigned short *eeprom_val);
167 int write_location(int eeprom_addr, unsigned short eeprom_val);
cdf448f6
TJ
168 int erase();
169
170private:
171 class Private;
cfaec73e 172 std::shared_ptr<Private> d;
20b1459a
TJ
173};
174
20b1459a
TJ
175/*! \brief Device list.
176 */
6b22a054 177class List
20b1459a 178{
cdf448f6
TJ
179public:
180 List(struct ftdi_device_list* devlist = 0);
181 ~List();
20b1459a 182
7c21beca 183 static List* find_all(Context &context, int vendor, int product);
20b1459a 184
a14193ac
TJ
185 /// List type storing "Context" objects
186 typedef std::list<Context> ListType;
187 /// Iterator type for the container
188 typedef ListType::iterator iterator;
189 /// Const iterator type for the container
190 typedef ListType::const_iterator const_iterator;
191 /// Reverse iterator type for the container
192 typedef ListType::reverse_iterator reverse_iterator;
193 /// Const reverse iterator type for the container
194 typedef ListType::const_reverse_iterator const_reverse_iterator;
195
196 iterator begin();
197 iterator end();
198 const_iterator begin() const;
199 const_iterator end() const;
200
201 reverse_iterator rbegin();
202 reverse_iterator rend();
203 const_reverse_iterator rbegin() const;
204 const_reverse_iterator rend() const;
205
206 ListType::size_type size() const;
207 bool empty() const;
6b22a054
MV
208 void clear();
209
a14193ac
TJ
210 void push_back(const Context& element);
211 void push_front(const Context& element);
6b22a054 212
a14193ac
TJ
213 iterator erase(iterator pos);
214 iterator erase(iterator beg, iterator end);
6b22a054 215
cdf448f6
TJ
216private:
217 class Private;
cfaec73e 218 std::shared_ptr<Private> d;
20b1459a
TJ
219};
220
221}
222
223#endif