Changeset 9763

Show
Ignore:
Timestamp:
10/08/08 23:24:16
Author:
eb
Message:

added missing methods

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • gnuradio/branches/developers/eb/cppdb-wip/usrp/host/lib/legacy/usrp_basic.cc

    r9761 r9763  
    987987 
    988988double 
    989 usrp_basic_rx::pga (int which_amp) const 
     989usrp_basic_rx::pga(int which_amp) const 
    990990{ 
    991991  return common_pga(C_RX, which_amp); 
     992} 
     993 
     994double 
     995usrp_basic_rx::pga_min() const 
     996{ 
     997  return common_pga_min(C_RX); 
     998} 
     999 
     1000double 
     1001usrp_basic_rx::pga_max() const 
     1002{ 
     1003  return common_pga_max(C_RX); 
     1004} 
     1005 
     1006double 
     1007usrp_basic_rx::pga_db_per_step() const 
     1008{ 
     1009  return common_pga_db_per_step(C_RX); 
    9921010} 
    9931011 
     
    13811399} 
    13821400 
     1401double 
     1402usrp_basic_tx::pga_min() const 
     1403{ 
     1404  return common_pga_min(C_TX); 
     1405} 
     1406 
     1407double 
     1408usrp_basic_tx::pga_max() const 
     1409{ 
     1410  return common_pga_max(C_TX); 
     1411} 
     1412 
     1413double 
     1414usrp_basic_tx::pga_db_per_step() const 
     1415{ 
     1416  return common_pga_db_per_step(C_TX); 
     1417} 
     1418 
    13831419bool 
    13841420usrp_basic_tx::_write_oe (int which_side, int value, int mask)