Imported Upstream version 3.0
[debian/gnuradio] / gnuradio-core / src / lib / io / i2c_bitbang.h
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2001,2004 Free Software Foundation, Inc.
4  * 
5  * This file is part of GNU Radio
6  * 
7  * GNU Radio is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2, or (at your option)
10  * any later version.
11  * 
12  * GNU Radio is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  * 
17  * You should have received a copy of the GNU General Public License
18  * along with GNU Radio; see the file COPYING.  If not, write to
19  * the Free Software Foundation, Inc., 51 Franklin Street,
20  * Boston, MA 02110-1301, USA.
21  */
22
23 #ifndef INCLUDED_I2C_BITBANG_H
24 #define INCLUDED_I2C_BITBANG_H
25
26 #include <i2c.h>
27 #include <i2c_bbio.h>
28
29 /*!
30  * \brief class for controlling i2c bus
31  */
32 class i2c_bitbang : public i2c {
33   friend i2c_sptr make_i2c_bitbang (i2c_bbio_sptr io);
34   i2c_bitbang (i2c_bbio_sptr io);
35
36  public:
37   ~i2c_bitbang () {}
38   
39   //! \returns true iff successful
40   bool write (int addr, const unsigned char *buf, int nbytes);
41
42   //! \returns number of bytes read or -1 if error
43   int read (int addr, unsigned char *buf, int max_bytes);
44
45
46 private:
47   void start ();
48   void stop ();
49   void write_bit (bool bit);
50   bool write_byte (char byte);
51   
52   void set_sda (bool bit) { d_io->set_sda (bit); }
53   void set_scl (bool bit) { d_io->set_scl (bit); }
54   bool get_sda () { return d_io->get_sda (); }
55
56   i2c_bbio_sptr         d_io;
57 };
58
59 i2c_sptr make_i2c_bitbang (i2c_bbio_sptr io);
60
61 #endif /* INCLUDED_I2C_BITBANG_H */
62
63