summaryrefslogtreecommitdiffstats
path: root/fpga/usrp2/control_lib
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2010-05-10 14:03:10 -0700
committerJosh Blum <josh@joshknows.com>2010-05-10 14:03:10 -0700
commitd4cbea8267630d0fb01f41363e40b2cc90d6e6ab (patch)
treeeb2f2c6cd5c3ba905f03a22e104ad4ab164d359f /fpga/usrp2/control_lib
parent8ebe12659c117ad6ff5f6e6ef762d55bf77d8dd1 (diff)
parentc1db109e05034e7bb1e813b8d6c965cf01619aa8 (diff)
downloaduhd-d4cbea8267630d0fb01f41363e40b2cc90d6e6ab.tar.gz
uhd-d4cbea8267630d0fb01f41363e40b2cc90d6e6ab.tar.bz2
uhd-d4cbea8267630d0fb01f41363e40b2cc90d6e6ab.zip
Merge branch 'udp' of git@ettus.sourcerepo.com:ettus/fpgapriv
Diffstat (limited to 'fpga/usrp2/control_lib')
-rw-r--r--fpga/usrp2/control_lib/nsgpio.v2
1 files changed, 1 insertions, 1 deletions
diff --git a/fpga/usrp2/control_lib/nsgpio.v b/fpga/usrp2/control_lib/nsgpio.v
index 937ea7020..26130cc8e 100644
--- a/fpga/usrp2/control_lib/nsgpio.v
+++ b/fpga/usrp2/control_lib/nsgpio.v
@@ -95,7 +95,7 @@ module nsgpio
integer n;
reg [31:0] igpio; // temporary internal signal
- always @(ctrl or line or debug_1 or debug_0 or atr)
+ always @(ctrl or line or debug_1 or debug_0 or atr or ddr)
for(n=0;n<32;n=n+1)
igpio[n] <= ddr[n] ? (ctrl[2*n+1] ? (ctrl[2*n] ? debug_1[n] : debug_0[n]) :
(ctrl[2*n] ? atr[n] : line[n]) )