Changeset 9740
- Timestamp:
- 10/07/08 18:16:00
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
gnuradio/branches/developers/eb/cppdb-wip/usrp/host/lib/legacy/usrp_standard.cc
r9733 r9740 26 26 #include "fpga_regs_common.h" 27 27 #include "fpga_regs_standard.h" 28 #include <db_boards.h>29 28 #include <stdexcept> 30 29 #include <assert.h> … … 103 102 if (d_fpga_caps == OLD_CAPS_VAL) 104 103 d_fpga_caps = DEFAULT_CAPS_VAL; 105 106 104 107 105 if (0){ gnuradio/branches/developers/eb/cppdb-wip/usrp/host/lib/legacy/usrp_standard.h
r9733 r9740 54 54 /*! 55 55 * \brief number of digital upconverters implemented in the FPGA 56 57 56 * This will be 0, 1, or 2. 58 57 */ 59 58 int nducs() const; 60 61 virtual bool set_rx_freq (int channel, double freq) { throw 0; }62 virtual bool set_tx_freq (int channel, double freq) { throw 0; }63 59 }; 64 60 … … 77 73 int d_hw_mux; 78 74 double d_rx_freq[MAX_CHAN]; 79 //db_base_sptr d_db[2];80 75 81 76 protected: … … 226 221 int mux () const; 227 222 unsigned int format () const; 228 //db_base_sptr db(int which) const;229 223 230 224 // called in base class to derived class order … … 260 254 coarse_mod_t d_coarse_mod[MAX_CHAN]; 261 255 unsigned char d_tx_modulator_shadow[MAX_CHAN]; 262 //db_base_sptr d_db[2];263 256 264 257 virtual bool set_coarse_modulator (int channel, coarse_mod_t cm); … … 365 358 int nchannels () const; 366 359 int mux () const; 367 //db_base_sptr db(int which) const;368 360 369 361 // called in base class to derived class order
