diff options
author | Martin Braun <martin.braun@ettus.com> | 2017-10-09 17:44:02 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2017-12-22 15:04:02 -0800 |
commit | cea45dda8f7d7918930a6b1150913390d4480037 (patch) | |
tree | 66ca4ca6bdabe32e023317afae8bde674ecaf329 /host/include | |
parent | 9a9759e2cfea3de602dda3053c1a4a46005abeb1 (diff) | |
download | uhd-cea45dda8f7d7918930a6b1150913390d4480037.tar.gz uhd-cea45dda8f7d7918930a6b1150913390d4480037.tar.bz2 uhd-cea45dda8f7d7918930a6b1150913390d4480037.zip |
mpm: Add mboard EEPROM support
MPMD binds a property for the mboard EEPROM to the appropriate RPC
calls. PeriphManager now provides default implementations for an mboard
EEPROM.
Diffstat (limited to 'host/include')
-rw-r--r-- | host/include/uhd/types/eeprom.hpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/host/include/uhd/types/eeprom.hpp b/host/include/uhd/types/eeprom.hpp new file mode 100644 index 000000000..814d429c8 --- /dev/null +++ b/host/include/uhd/types/eeprom.hpp @@ -0,0 +1,20 @@ +// +// Copyright 2017 Ettus Research (National Instruments Corp.) +// +// SPDX-License-Identifier: GPL-3.0 +// + +#ifndef INCLUDED_UHD_EEPROM_HPP +#define INCLUDED_UHD_EEPROM_HPP + +#include <map> +#include <string> + +namespace uhd { + + typedef std::map<std::string, std::string> eeprom_map_t; + + +} /* namespace uhd */ + +#endif /* INCLUDED_UHD_EEPROM_HPP */ |