diff options
Diffstat (limited to 'host/include')
-rw-r--r-- | host/include/uhd/types/serial.hpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/host/include/uhd/types/serial.hpp b/host/include/uhd/types/serial.hpp index 13832e318..7475708f6 100644 --- a/host/include/uhd/types/serial.hpp +++ b/host/include/uhd/types/serial.hpp @@ -104,6 +104,13 @@ struct UHD_API spi_config_t * \param edge the default edge for mosi and miso */ spi_config_t(edge_t edge = EDGE_RISE); + + /*! + * Create a new spi config with custom divider. + * \param edge the default edge for mosi and miso + * \param divider the divider setting to use + */ + spi_config_t(edge_t edge, size_t divider); }; /*! |