Changeset 9763
- Timestamp:
- 10/08/08 23:24:16
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
gnuradio/branches/developers/eb/cppdb-wip/usrp/host/lib/legacy/usrp_basic.cc
r9761 r9763 987 987 988 988 double 989 usrp_basic_rx::pga (int which_amp) const989 usrp_basic_rx::pga(int which_amp) const 990 990 { 991 991 return common_pga(C_RX, which_amp); 992 } 993 994 double 995 usrp_basic_rx::pga_min() const 996 { 997 return common_pga_min(C_RX); 998 } 999 1000 double 1001 usrp_basic_rx::pga_max() const 1002 { 1003 return common_pga_max(C_RX); 1004 } 1005 1006 double 1007 usrp_basic_rx::pga_db_per_step() const 1008 { 1009 return common_pga_db_per_step(C_RX); 992 1010 } 993 1011 … … 1381 1399 } 1382 1400 1401 double 1402 usrp_basic_tx::pga_min() const 1403 { 1404 return common_pga_min(C_TX); 1405 } 1406 1407 double 1408 usrp_basic_tx::pga_max() const 1409 { 1410 return common_pga_max(C_TX); 1411 } 1412 1413 double 1414 usrp_basic_tx::pga_db_per_step() const 1415 { 1416 return common_pga_db_per_step(C_TX); 1417 } 1418 1383 1419 bool 1384 1420 usrp_basic_tx::_write_oe (int which_side, int value, int mask)
