From 20c9b194aa40e28f08898256039fbbbd7883b2ad Mon Sep 17 00:00:00 2001 From: Josh Blum Date: Thu, 4 Nov 2010 16:43:52 -0700 Subject: usrp: created mboard eeprom map class, implemented for usrp2 --- host/include/uhd/usrp/CMakeLists.txt | 1 + host/include/uhd/usrp/mboard_eeprom.hpp | 64 +++++++++++++++++++++++++++++++++ 2 files changed, 65 insertions(+) create mode 100644 host/include/uhd/usrp/mboard_eeprom.hpp (limited to 'host/include') diff --git a/host/include/uhd/usrp/CMakeLists.txt b/host/include/uhd/usrp/CMakeLists.txt index abddf3951..cdf31df87 100644 --- a/host/include/uhd/usrp/CMakeLists.txt +++ b/host/include/uhd/usrp/CMakeLists.txt @@ -34,6 +34,7 @@ INSTALL(FILES ### utilities ### dsp_utils.hpp + mboard_eeprom.hpp misc_utils.hpp subdev_spec.hpp tune_helper.hpp diff --git a/host/include/uhd/usrp/mboard_eeprom.hpp b/host/include/uhd/usrp/mboard_eeprom.hpp new file mode 100644 index 000000000..0d57105b9 --- /dev/null +++ b/host/include/uhd/usrp/mboard_eeprom.hpp @@ -0,0 +1,64 @@ +// +// Copyright 2010 Ettus Research LLC +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . +// + +#ifndef INCLUDED_UHD_USRP_MBOARD_EEPROM_HPP +#define INCLUDED_UHD_USRP_MBOARD_EEPROM_HPP + +#include +#include +#include +#include +#include +#include + +namespace uhd{ namespace usrp{ + + /*! + * The motherboard EEPROM class: + * Knows how to read and write the EEPROM for various USRPs. + * The class inherits from a string, string dictionary. + * Use the dictionary interface to get and set values. + * Commit to the EEPROM to save changed settings. + */ + class UHD_API mboard_eeprom_t: boost::noncopyable, + public uhd::dict + { + public: + typedef boost::shared_ptr sptr; + + //! Possible EEPROM maps types + enum map_type{ + MAP_NXXX, + MAP_BXXX + }; + + /*! + * Make a new mboard EEPROM handler. + * \param map the map type enum + * \param iface the interface to i2c + * \return a new mboard EEPROM object + */ + static sptr make(map_type map, i2c_iface &iface); + + //! Write the contents of this object to the EEPROM. + virtual void commit(void) = 0; + + }; + +}} //namespace + +#endif /* INCLUDED_UHD_USRP_MBOARD_EEPROM_HPP */ -- cgit v1.2.3