From 36075f38e6c8b4f641ba3d1fd97cfd72dcc05e7b Mon Sep 17 00:00:00 2001 From: Ashish Chaudhari Date: Fri, 6 May 2016 12:21:41 -0700 Subject: dboard_iface: Added FE name input to set_fe_connection - A dboard_base class can have multiple frontends (subdevs) and the set_fe_connection needs to be able to distinguish between them --- host/lib/usrp/e100/dboard_iface.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'host/lib/usrp/e100/dboard_iface.cpp') diff --git a/host/lib/usrp/e100/dboard_iface.cpp b/host/lib/usrp/e100/dboard_iface.cpp index faa0ff7d4..ce0ac026b 100644 --- a/host/lib/usrp/e100/dboard_iface.cpp +++ b/host/lib/usrp/e100/dboard_iface.cpp @@ -1,5 +1,5 @@ // -// Copyright 2010-2011,2015 Ettus Research LLC +// Copyright 2010-2011,2015,2016 Ettus Research LLC // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by @@ -101,7 +101,7 @@ public: double get_clock_rate(unit_t); void set_clock_enabled(unit_t, bool); double get_codec_rate(unit_t); - void set_fe_connection(unit_t unit, const fe_connection_t& fe_conn); + void set_fe_connection(unit_t unit, const std::string&, const fe_connection_t& fe_conn); private: timed_wb_iface::sptr _wb_iface; @@ -288,7 +288,7 @@ void e100_dboard_iface::set_command_time(const uhd::time_spec_t& t) _wb_iface->set_time(t); } -void e100_dboard_iface::set_fe_connection(unit_t, const fe_connection_t&) +void e100_dboard_iface::set_fe_connection(unit_t, const std::string&, const fe_connection_t&) { throw uhd::not_implemented_error("fe connection configuration support not implemented"); } -- cgit v1.2.3