diff options
| author | Ashish Chaudhari <ashish@ettus.com> | 2015-10-16 12:04:52 -0700 | 
|---|---|---|
| committer | Ashish Chaudhari <ashish@ettus.com> | 2015-10-16 12:04:52 -0700 | 
| commit | 0eb0e4913ce6195d76c1e1100ac8be8310e5a53d (patch) | |
| tree | 07b5039937011958349ac59de7cd4a523425a5df | |
| parent | 75855419685473cfc766bab80da975d723d59ab3 (diff) | |
| download | uhd-0eb0e4913ce6195d76c1e1100ac8be8310e5a53d.tar.gz uhd-0eb0e4913ce6195d76c1e1100ac8be8310e5a53d.tar.bz2 uhd-0eb0e4913ce6195d76c1e1100ac8be8310e5a53d.zip  | |
fixup! usrp3: Fixed issue where ATR Idle could clobber GPIO out
| -rw-r--r-- | host/lib/usrp/cores/gpio_atr_3000.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/usrp/cores/gpio_atr_3000.cpp b/host/lib/usrp/cores/gpio_atr_3000.cpp index 7f48abc69..59683d1c9 100644 --- a/host/lib/usrp/cores/gpio_atr_3000.cpp +++ b/host/lib/usrp/cores/gpio_atr_3000.cpp @@ -141,7 +141,7 @@ public:              break;          case GPIO_OUT:              //Only set bits that are driven statically -            set_atr_reg(ATR_REG_IDLE, value); +            set_gpio_out(value);              break;          case GPIO_ATR_0X:              //Only set bits that are driven by the ATR engine  | 
