aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLane Kolbly <lane.kolbly@ni.com>2021-02-02 13:43:13 -0600
committerAaron Rossetto <aaron.rossetto@ni.com>2021-02-03 15:15:52 -0600
commite115e046eca7b7485edb59abe794b24290195c75 (patch)
tree46eaae7ef25f9660ff1f96479e3fb49a7c3a8e97
parent9c4d9d826a6f40f199c526afd5ec168d5d088591 (diff)
downloaduhd-e115e046eca7b7485edb59abe794b24290195c75.tar.gz
uhd-e115e046eca7b7485edb59abe794b24290195c75.tar.bz2
uhd-e115e046eca7b7485edb59abe794b24290195c75.zip
usrp: Remove old header file declarations
The definitions of these functions were deleted in 23f4f8cf4ea72, and so now we can remove the declarations from the header file to prevent any confusion.
-rw-r--r--host/include/uhd/usrp/usrp.h33
1 files changed, 0 insertions, 33 deletions
diff --git a/host/include/uhd/usrp/usrp.h b/host/include/uhd/usrp/usrp.h
index 4bbd3ca04..69e2d0192 100644
--- a/host/include/uhd/usrp/usrp.h
+++ b/host/include/uhd/usrp/usrp.h
@@ -1237,39 +1237,6 @@ UHD_API uhd_error uhd_usrp_get_gpio_attr(
uint32_t *attr_out
);
-//! Enumerate the full paths of USRP registers available for read/write
-UHD_API uhd_error uhd_usrp_enumerate_registers(
- uhd_usrp_handle h,
- size_t mboard,
- uhd_string_vector_handle *registers_out
-);
-
-//! Get more information about a low-level device register
-UHD_API uhd_error uhd_usrp_get_register_info(
- uhd_usrp_handle h,
- const char* path,
- size_t mboard,
- uhd_usrp_register_info_t *register_info_out
-);
-
-//! Write a low-level register field for a device register in the USRP hardware
-UHD_API uhd_error uhd_usrp_write_register(
- uhd_usrp_handle h,
- const char* path,
- uint32_t field,
- uint64_t value,
- size_t mboard
-);
-
-//! Read a low-level register field from a device register in the USRP hardware
-UHD_API uhd_error uhd_usrp_read_register(
- uhd_usrp_handle h,
- const char* path,
- uint32_t field,
- size_t mboard,
- uint64_t *value_out
-);
-
#ifdef __cplusplus
}
#endif