Increase copyright year (final release will be in 2013)
[libftdi] / ftdipp / ftdi.hpp
CommitLineData
cdf448f6
TJ
1/***************************************************************************
2 ftdi.hpp - C++ wrapper for libftdi
3 -------------------
4 begin : Mon Oct 13 2008
b25d9165 5 copyright : (C) 2008-2013 by Marek Vavruša and libftdi developers
cdf448f6
TJ
6 email : opensource@intra2net.com and marek@vavrusa.com
7 ***************************************************************************/
3ab8f642 8/*
b25d9165 9Copyright (C) 2008-2013 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>
cfceadbc 34#include <boost/shared_ptr.hpp>
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 {
58 Input,
59 Output
60 };
61
62 /*! \brief Modem control flags.
63 */
64 enum ModemCtl
65 {
66 Dtr,
67 Rts
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();
88 int flush(int mask = Input|Output);
89 int set_interface(enum ftdi_interface interface);
579b006f 90 void set_usb_device(struct libusb_device_handle *dev);
cdf448f6
TJ
91
92 /* Line manipulators */
93 int set_baud_rate(int baudrate);
94 int set_line_property(enum ftdi_bits_type bits, enum ftdi_stopbits_type sbit, enum ftdi_parity_type parity);
95 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);
96
97 /* I/O */
98 int read(unsigned char *buf, int size);
99 int write(unsigned char *buf, int size);
100 int set_read_chunk_size(unsigned int chunksize);
101 int set_write_chunk_size(unsigned int chunksize);
102 int read_chunk_size();
103 int write_chunk_size();
104
105 /* Async IO
106 TODO: should wrap?
107 int writeAsync(unsigned char *buf, int size);
108 void asyncComplete(int wait_for_more);
109 */
110
111 /* Flow control */
112 int set_event_char(unsigned char eventch, unsigned char enable);
113 int set_error_char(unsigned char errorch, unsigned char enable);
114 int set_flow_control(int flowctrl);
115 int set_modem_control(int mask = Dtr|Rts);
116 int set_latency(unsigned char latency);
117 int set_dtr(bool state);
118 int set_rts(bool state);
119
120 unsigned short poll_modem_status();
121 unsigned latency();
122
123 /* BitBang mode */
124 int set_bitmode(unsigned char bitmask, unsigned char mode);
58cce2d4 125 int set_bitmode(unsigned char bitmask, enum ftdi_mpsse_mode mode);
cdf448f6
TJ
126 int bitbang_disable();
127 int read_pins(unsigned char *pins);
128
129 /* Misc */
130 char* error_string();
131
132protected:
133 int get_strings();
58cce2d4 134 int get_strings_and_reopen();
cdf448f6
TJ
135
136 /* Properties */
137 struct ftdi_context* context();
138 void set_context(struct ftdi_context* context);
579b006f 139 void set_usb_device(struct libusb_device *dev);
cdf448f6
TJ
140
141private:
142 class Private;
cfceadbc 143 boost::shared_ptr<Private> d;
20b1459a
TJ
144};
145
146/*! \brief Device EEPROM.
147 */
148class Eeprom
149{
cdf448f6
TJ
150public:
151 Eeprom(Context* parent);
152 ~Eeprom();
153
f14f84d3 154 int init_defaults(char *manufacturer, char* product, char * serial);
cdf448f6
TJ
155 int chip_id(unsigned int *chipid);
156 int build(unsigned char *output);
449c87a9 157
cdf448f6
TJ
158 int read(unsigned char *eeprom);
159 int write(unsigned char *eeprom);
449c87a9
TJ
160 int read_location(int eeprom_addr, unsigned short *eeprom_val);
161 int write_location(int eeprom_addr, unsigned short eeprom_val);
cdf448f6
TJ
162 int erase();
163
164private:
165 class Private;
cfceadbc 166 boost::shared_ptr<Private> d;
20b1459a
TJ
167};
168
20b1459a
TJ
169/*! \brief Device list.
170 */
6b22a054 171class List
20b1459a 172{
cdf448f6
TJ
173public:
174 List(struct ftdi_device_list* devlist = 0);
175 ~List();
20b1459a 176
7c21beca 177 static List* find_all(Context &context, int vendor, int product);
20b1459a 178
a14193ac
TJ
179 /// List type storing "Context" objects
180 typedef std::list<Context> ListType;
181 /// Iterator type for the container
182 typedef ListType::iterator iterator;
183 /// Const iterator type for the container
184 typedef ListType::const_iterator const_iterator;
185 /// Reverse iterator type for the container
186 typedef ListType::reverse_iterator reverse_iterator;
187 /// Const reverse iterator type for the container
188 typedef ListType::const_reverse_iterator const_reverse_iterator;
189
190 iterator begin();
191 iterator end();
192 const_iterator begin() const;
193 const_iterator end() const;
194
195 reverse_iterator rbegin();
196 reverse_iterator rend();
197 const_reverse_iterator rbegin() const;
198 const_reverse_iterator rend() const;
199
200 ListType::size_type size() const;
201 bool empty() const;
6b22a054
MV
202 void clear();
203
a14193ac
TJ
204 void push_back(const Context& element);
205 void push_front(const Context& element);
6b22a054 206
a14193ac
TJ
207 iterator erase(iterator pos);
208 iterator erase(iterator beg, iterator end);
6b22a054 209
cdf448f6
TJ
210private:
211 class Private;
cfceadbc 212 boost::shared_ptr<Private> d;
20b1459a
TJ
213};
214
215}
216
217#endif