Statistics
| Branch: | Tag: | Revision:

root / host / include / uhd / usrp / dboard_eeprom.hpp @ 1b63cd25

History | View | Annotate | Download (1.64 KB)

1 039eceb4 Josh Blum
//
2 de35e125 Josh Blum
// Copyright 2010-2011 Ettus Research LLC
3 039eceb4 Josh Blum
//
4
// This program is free software: you can redistribute it and/or modify
5
// it under the terms of the GNU General Public License as published by
6
// the Free Software Foundation, either version 3 of the License, or
7
// (at your option) any later version.
8
//
9
// This program is distributed in the hope that it will be useful,
10
// but WITHOUT ANY WARRANTY; without even the implied warranty of
11
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
// GNU General Public License for more details.
13
//
14
// You should have received a copy of the GNU General Public License
15
// along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
//
17
18
#ifndef INCLUDED_UHD_USRP_DBOARD_EEPROM_HPP
19
#define INCLUDED_UHD_USRP_DBOARD_EEPROM_HPP
20
21
#include <uhd/config.hpp>
22
#include <uhd/usrp/dboard_id.hpp>
23
#include <uhd/types/serial.hpp>
24
#include <string>
25
26
namespace uhd{ namespace usrp{
27
28
struct UHD_API dboard_eeprom_t{
29 de35e125 Josh Blum
30 814a5c40 Josh Blum
    //! The ID for the daughterboard type
31 039eceb4 Josh Blum
    dboard_id_t id;
32
33 814a5c40 Josh Blum
    //! The unique serial number
34
    std::string serial;
35
36 039eceb4 Josh Blum
    /*!
37 de35e125 Josh Blum
     * Create an empty dboard eeprom struct.
38 039eceb4 Josh Blum
     */
39 de35e125 Josh Blum
    dboard_eeprom_t(void);
40 039eceb4 Josh Blum
41
    /*!
42 de35e125 Josh Blum
     * Load the object with bytes from the eeprom.
43
     * \param iface the serial interface with i2c
44
     * \param addr the i2c address for the eeprom
45 039eceb4 Josh Blum
     */
46 de35e125 Josh Blum
    void load(i2c_iface &iface, boost::uint8_t addr);
47 039eceb4 Josh Blum
48
    /*!
49 de35e125 Josh Blum
     * Store the object to bytes in the eeprom.
50
     * \param iface the serial interface with i2c
51
     * \param addr the i2c address for the eeprom
52 039eceb4 Josh Blum
     */
53 de35e125 Josh Blum
    void store(i2c_iface &iface, boost::uint8_t addr);
54
55 039eceb4 Josh Blum
};
56
57
}} //namespace
58
59
#endif /* INCLUDED_UHD_USRP_DBOARD_EEPROM_HPP */