USRP Hardware Driver and USRP Manual Version: 4.2.0.0
UHD and USRP Manual
mboard_eeprom.h
Go to the documentation of this file.
1//
2// Copyright 2015 Ettus Research LLC
3// Copyright 2018 Ettus Research, a National Instruments Company
4//
5// SPDX-License-Identifier: GPL-3.0-or-later
6//
7
8#pragma once
9
10#include <uhd/config.h>
11#include <uhd/error.h>
12
13#ifdef __cplusplus
15#include <string>
16
17struct uhd_mboard_eeprom_t {
18 uhd::usrp::mboard_eeprom_t mboard_eeprom_cpp;
19 std::string last_error;
20};
21
22extern "C" {
23#else
24struct uhd_mboard_eeprom_t;
25#endif
26
28
34typedef struct uhd_mboard_eeprom_t* uhd_mboard_eeprom_handle;
35
39);
40
42
48);
49
53 const char* key,
54 char* value_out,
55 size_t strbuffer_len
56);
57
61 const char* key,
62 const char* value
63);
64
68 char* error_out,
69 size_t strbuffer_len
70);
71
72#ifdef __cplusplus
73}
74#endif
#define UHD_API
Definition: config.h:87
uhd_error
UHD error codes.
Definition: error.h:20
struct uhd_mboard_eeprom_t * uhd_mboard_eeprom_handle
A C-level interface for interacting with a USRP motherboard's EEPROM.
Definition: mboard_eeprom.h:34
UHD_API uhd_error uhd_mboard_eeprom_free(uhd_mboard_eeprom_handle *h)
Free a USRP motherboard EEPROM handle.
UHD_API uhd_error uhd_mboard_eeprom_last_error(uhd_mboard_eeprom_handle h, char *error_out, size_t strbuffer_len)
Get the last error recorded by the handle.
UHD_API uhd_error uhd_mboard_eeprom_make(uhd_mboard_eeprom_handle *h)
Create a handle for working with a USRP motherboard EEPROM.
UHD_API uhd_error uhd_mboard_eeprom_set_value(uhd_mboard_eeprom_handle h, const char *key, const char *value)
Set the value for the given EEPROM key.
UHD_API uhd_error uhd_mboard_eeprom_get_value(uhd_mboard_eeprom_handle h, const char *key, char *value_out, size_t strbuffer_len)
Get the value associated with the given EEPROM key.