We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1339f0 commit a987c11Copy full SHA for a987c11
source_modules/usrp_source/src/main.cpp
@@ -111,7 +111,7 @@ class USRPSourceModule : public ModuleManager::Instance {
111
channels.clear();
112
auto subdevs = dev->get_rx_subdev_spec();
113
for (int i = 0; i < subdevs.size(); i++) {
114
- std::string slot = subdevs[i].db_name;
+ std::string slot = subdevs[i].db_name + ',' + subdevs[i].sd_name;
115
sprintf(buf, "%s [%s]", dev->get_rx_subdev_name(i).c_str(), slot.c_str());
116
channels.define(buf, buf, buf);
117
}
0 commit comments