diff options
| author | Josh Blum <josh@joshknows.com> | 2010-11-29 12:26:57 -0500 | 
|---|---|---|
| committer | Josh Blum <josh@joshknows.com> | 2010-11-29 12:26:57 -0500 | 
| commit | d96252d6dcf24a8dec9a2f171bd8f305702d8432 (patch) | |
| tree | 33715f0f7b0cb5fdef933a0aa8f646c344e61674 /host/lib/usrp/usrp_e100 | |
| parent | 3e268baedbb93fd51888d991e53abf6f658c4c97 (diff) | |
| parent | 9a2e26e5004d3f740c9690ad8b0b85debcb51c7a (diff) | |
| download | uhd-d96252d6dcf24a8dec9a2f171bd8f305702d8432.tar.gz uhd-d96252d6dcf24a8dec9a2f171bd8f305702d8432.tar.bz2 uhd-d96252d6dcf24a8dec9a2f171bd8f305702d8432.zip | |
Merge branch 'dboard_iface_gpio'
Diffstat (limited to 'host/lib/usrp/usrp_e100')
| -rw-r--r-- | host/lib/usrp/usrp_e100/dboard_iface.cpp | 16 | 
1 files changed, 8 insertions, 8 deletions
| diff --git a/host/lib/usrp/usrp_e100/dboard_iface.cpp b/host/lib/usrp/usrp_e100/dboard_iface.cpp index aa96171d6..a5032f86f 100644 --- a/host/lib/usrp/usrp_e100/dboard_iface.cpp +++ b/host/lib/usrp/usrp_e100/dboard_iface.cpp @@ -63,10 +63,10 @@ public:      void write_aux_dac(unit_t, aux_dac_t, float);      float read_aux_adc(unit_t, aux_adc_t); -    void set_pin_ctrl(unit_t, boost::uint16_t); -    void set_atr_reg(unit_t, atr_reg_t, boost::uint16_t); -    void set_gpio_ddr(unit_t, boost::uint16_t); -    void write_gpio(unit_t, boost::uint16_t); +    void _set_pin_ctrl(unit_t, boost::uint16_t); +    void _set_atr_reg(unit_t, atr_reg_t, boost::uint16_t); +    void _set_gpio_ddr(unit_t, boost::uint16_t); +    void _set_gpio_out(unit_t, boost::uint16_t);      void set_gpio_debug(unit_t, int);      boost::uint16_t read_gpio(unit_t); @@ -148,7 +148,7 @@ double usrp_e100_dboard_iface::get_codec_rate(unit_t){  /***********************************************************************   * GPIO   **********************************************************************/ -void usrp_e100_dboard_iface::set_pin_ctrl(unit_t unit, boost::uint16_t value){ +void usrp_e100_dboard_iface::_set_pin_ctrl(unit_t unit, boost::uint16_t value){      UHD_ASSERT_THROW(GPIO_SEL_ATR == 1); //make this assumption      switch(unit){      case UNIT_RX: _iface->poke16(UE_REG_GPIO_RX_SEL, value); return; @@ -156,14 +156,14 @@ void usrp_e100_dboard_iface::set_pin_ctrl(unit_t unit, boost::uint16_t value){      }  } -void usrp_e100_dboard_iface::set_gpio_ddr(unit_t unit, boost::uint16_t value){ +void usrp_e100_dboard_iface::_set_gpio_ddr(unit_t unit, boost::uint16_t value){      switch(unit){      case UNIT_RX: _iface->poke16(UE_REG_GPIO_RX_DDR, value); return;      case UNIT_TX: _iface->poke16(UE_REG_GPIO_TX_DDR, value); return;      }  } -void usrp_e100_dboard_iface::write_gpio(unit_t unit, boost::uint16_t value){ +void usrp_e100_dboard_iface::_set_gpio_out(unit_t unit, boost::uint16_t value){      switch(unit){      case UNIT_RX: _iface->poke16(UE_REG_GPIO_RX_IO, value); return;      case UNIT_TX: _iface->poke16(UE_REG_GPIO_TX_IO, value); return; @@ -178,7 +178,7 @@ boost::uint16_t usrp_e100_dboard_iface::read_gpio(unit_t unit){      }  } -void usrp_e100_dboard_iface::set_atr_reg(unit_t unit, atr_reg_t atr, boost::uint16_t value){ +void usrp_e100_dboard_iface::_set_atr_reg(unit_t unit, atr_reg_t atr, boost::uint16_t value){      //define mapping of unit to atr regs to register address      static const uhd::dict<          unit_t, uhd::dict<atr_reg_t, boost::uint32_t> | 
