diff options
author | Martin Braun <martin.braun@ettus.com> | 2022-04-14 16:23:50 +0200 |
---|---|---|
committer | Aaron Rossetto <aaron.rossetto@ni.com> | 2022-06-10 13:24:05 -0500 |
commit | f2043bc60bfe841bbb73b5f5dd38813592c9536b (patch) | |
tree | b6585c0df26c61aba54e755d8928d6ee05290cdf | |
parent | 392adafb1b7dbde62d92fbfc30c2336a503bed53 (diff) | |
download | uhd-f2043bc60bfe841bbb73b5f5dd38813592c9536b.tar.gz uhd-f2043bc60bfe841bbb73b5f5dd38813592c9536b.tar.bz2 uhd-f2043bc60bfe841bbb73b5f5dd38813592c9536b.zip |
x300: Change order of GPIO banks
FP0 is now listed first. This helps with determining a default GPIO
bank.
-rw-r--r-- | host/lib/usrp/x300/x300_radio_control.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/usrp/x300/x300_radio_control.cpp b/host/lib/usrp/x300/x300_radio_control.cpp index 6a851bc8f..1e9e1d5ab 100644 --- a/host/lib/usrp/x300/x300_radio_control.cpp +++ b/host/lib/usrp/x300/x300_radio_control.cpp @@ -913,7 +913,7 @@ public: /*** GPIO API ************************************************************/ std::vector<std::string> get_gpio_banks() const override { - return {"RX", "TX", "FP0"}; + return {"FP0", "RX", "TX"}; } void set_gpio_attr( |