diff options
author | Josh Blum <josh@joshknows.com> | 2011-09-28 15:35:36 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2011-09-28 15:35:36 -0700 |
commit | 9d00821b51301412071944315e9d1555482b7e39 (patch) | |
tree | 84f6a170269e1f7a7ed9c583a3f9701cee54c960 /fpga/usrp2/top/E1x0/u1e.v | |
parent | df4b43bfcde201c1311eac98c95e8b87c7566320 (diff) | |
parent | de25eecffe11a13717a1477ca385c9cd333de6f3 (diff) | |
download | uhd-9d00821b51301412071944315e9d1555482b7e39.tar.gz uhd-9d00821b51301412071944315e9d1555482b7e39.tar.bz2 uhd-9d00821b51301412071944315e9d1555482b7e39.zip |
Merge branch 'uhd_master'
Diffstat (limited to 'fpga/usrp2/top/E1x0/u1e.v')
-rw-r--r-- | fpga/usrp2/top/E1x0/u1e.v | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/fpga/usrp2/top/E1x0/u1e.v b/fpga/usrp2/top/E1x0/u1e.v index ff2e08394..903ef7a6f 100644 --- a/fpga/usrp2/top/E1x0/u1e.v +++ b/fpga/usrp2/top/E1x0/u1e.v @@ -22,6 +22,7 @@ module u1e (input CLK_FPGA_P, input CLK_FPGA_N, // Diff output [3:0] debug_led, output [31:0] debug, output [1:0] debug_clk, input debug_pb, output FPGA_TXD, input FPGA_RXD, + output fpga_txd1, input fpga_rxd1, input overo_txd1, output overo_rxd1, // GPMC input EM_CLK, inout [15:0] EM_D, input [10:1] EM_A, input [1:0] EM_NBE, @@ -59,6 +60,10 @@ module u1e clk_fpga_pin (.O(clk_fpga),.I(CLK_FPGA_P),.IB(CLK_FPGA_N)); // ///////////////////////////////////////////////////////////////////////// + // UART level conversion + assign fpga_txd1 = overo_txd1; + assign overo_rxd1 = fpga_rxd1; + // SPI wire mosi, sclk, miso; assign { db_sclk_tx, db_mosi_tx } = ~db_sen_tx ? {sclk,mosi} : 2'b0; |