update gain names

This commit is contained in:
Dimitri Stolnikov 2012-07-01 12:43:22 +02:00
parent 604a9d79b0
commit 10f0d89348
2 changed files with 6 additions and 2 deletions

View File

@ -189,7 +189,7 @@ std::vector<std::string> fcd_source::get_gain_names( size_t chan )
{
std::vector< std::string > names;
names += "LNA", "MIXER";
names += "LNA";
return names;
}

View File

@ -189,7 +189,11 @@ double rtl_tcp_source_c::get_freq_corr( size_t chan )
std::vector<std::string> rtl_tcp_source_c::get_gain_names( size_t chan )
{
return std::vector< std::string >();
std::vector< std::string > names;
names += "LNA";
return names;
}
osmosdr::gain_range_t rtl_tcp_source_c::get_gain_range( size_t chan )