USRP Hardware Driver and USRP Manual  Version: 4.7.0.0-22-g6758966a
UHD and USRP Manual
spi_getter_iface.hpp
Go to the documentation of this file.
1 //
2 // Copyright 2021 Ettus Research, a National Instruments Brand
3 //
4 // SPDX-License-Identifier: GPL-3.0-or-later
5 //
6 
7 #pragma once
8 
9 #include <uhd/config.hpp>
11 #include <uhd/types/serial.hpp>
12 #include <memory>
13 
14 namespace uhd { namespace features {
15 
21 {
23  uint8_t periph_cs;
24 
26  uint8_t periph_sdi;
27 
29  uint8_t periph_sdo;
30 
32  uint8_t periph_clk;
33 };
34 
38 {
39 public:
40  using sptr = std::shared_ptr<spi_getter_iface>;
41 
43  {
45  }
46 
47  std::string get_feature_name() const
48  {
49  return "SPI Getter Interface";
50  }
51 
52  virtual ~spi_getter_iface() = default;
53 
58  const std::vector<uhd::features::spi_periph_config_t>& spi_periph_config)
59  const = 0;
60 };
61 
62 }} // namespace uhd::features
Definition: discoverable_feature.hpp:26
feature_id_t
An enum of all features supported by the driver. When creating a new.
Definition: discoverable_feature.hpp:32
@ SPI_GETTER_IFACE
Definition: discoverable_feature.hpp:40
std::shared_ptr< discoverable_feature > sptr
Definition: discoverable_feature.hpp:28
Definition: spi_getter_iface.hpp:38
virtual ~spi_getter_iface()=default
std::string get_feature_name() const
Returns a human-readable string name of this feature.
Definition: spi_getter_iface.hpp:47
static discoverable_feature::feature_id_t get_feature_id()
Definition: spi_getter_iface.hpp:42
virtual uhd::spi_iface::sptr get_spi_ref(const std::vector< uhd::features::spi_periph_config_t > &spi_periph_config) const =0
std::shared_ptr< spi_iface > sptr
Definition: serial.hpp:124
#define UHD_API
Definition: config.h:87
Definition: build_info.hpp:12
Definition: spi_getter_iface.hpp:21
uint8_t periph_cs
Indicates which GPIO line to use for the CS signal.
Definition: spi_getter_iface.hpp:23
uint8_t periph_sdi
Indicates which GPIO line to use for the SDI signal.
Definition: spi_getter_iface.hpp:26
uint8_t periph_sdo
Indicates which GPIO line to use for the SDO signal.
Definition: spi_getter_iface.hpp:29
uint8_t periph_clk
Indicates which GPIO line to use for the SCLK signal.
Definition: spi_getter_iface.hpp:32