diff options
author | Josh Blum <josh@joshknows.com> | 2011-09-28 13:27:33 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2011-09-28 13:27:33 -0700 |
commit | 4226748ddda610eafaf5c6c32be206c336232b80 (patch) | |
tree | 93795f42993ba85ffe4b1d4b539bc72eccd638d5 /fpga/usrp2/top/E1x0/u1e.v | |
parent | c2122833e25ffe6e8e6918874afe7a3c9a92bc87 (diff) | |
parent | 24b07e1b0dbe8ab9d72c46f65c14c34e84347554 (diff) | |
download | uhd-4226748ddda610eafaf5c6c32be206c336232b80.tar.gz uhd-4226748ddda610eafaf5c6c32be206c336232b80.tar.bz2 uhd-4226748ddda610eafaf5c6c32be206c336232b80.zip |
Merge branch 'fpga_master' into uhd_master
Conflicts:
fpga/usrp1/toplevel/usrp_std/usrp_std.v
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; |