diff options
author | Matt Ettus <matt@ettus.com> | 2010-02-25 21:09:34 -0800 |
---|---|---|
committer | Matt Ettus <matt@ettus.com> | 2010-02-25 21:09:34 -0800 |
commit | e775ce6c17d1e43865cdd3f9472157d0d2d26b92 (patch) | |
tree | fd22c581044fa1f7c769809bbc13ff73279116e8 | |
parent | 67dd6732b70c1cd35a7134f4830b09b893255935 (diff) | |
download | uhd-e775ce6c17d1e43865cdd3f9472157d0d2d26b92.tar.gz uhd-e775ce6c17d1e43865cdd3f9472157d0d2d26b92.tar.bz2 uhd-e775ce6c17d1e43865cdd3f9472157d0d2d26b92.zip |
invert the pushbuttons since they are active low
-rw-r--r-- | usrp2/top/u1e/u1e.v | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usrp2/top/u1e/u1e.v b/usrp2/top/u1e/u1e.v index 066d02ca4..329d61aa9 100644 --- a/usrp2/top/u1e/u1e.v +++ b/usrp2/top/u1e/u1e.v @@ -21,9 +21,9 @@ module u1e IBUFGDS #(.IOSTANDARD("LVDS_33"), .DIFF_TERM("TRUE")) clk_fpga_pin (.O(clk_fpga),.I(CLK_FPGA_P),.IB(CLK_FPGA_N)); - u1e_core u1e_core(.clk_fpga(clk_fpga), .rst_fpga(debug_pb[2]), + u1e_core u1e_core(.clk_fpga(clk_fpga), .rst_fpga(~debug_pb[2]), .debug_led(debug_led), .debug(debug), .debug_clk(debug_clk), - .debug_pb(debug_pb), .dip_sw(dip_sw), .debug_txd(FPGA_TXD), .debug_rxd(FPGA_RXD), + .debug_pb(~debug_pb), .dip_sw(dip_sw), .debug_txd(FPGA_TXD), .debug_rxd(FPGA_RXD), .EM_CLK(EM_CLK), .EM_D(EM_D), .EM_A(EM_A), .EM_NBE(EM_NBE), .EM_WAIT0(EM_WAIT0), .EM_NCS4(EM_NCS4), .EM_NCS6(EM_NCS6), .EM_NWE(EM_NWE), .EM_NOE(EM_NOE), |