aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoachim StroĢˆmbergson <joachim@secworks.se>2014-12-03 14:13:20 +0100
committerJoachim StroĢˆmbergson <joachim@secworks.se>2014-12-03 14:13:20 +0100
commitc856d086826e7fcefae3f79856e3cec4ba24be95 (patch)
treed4552f756238f65a495aeb7e7626731c7797ad81
parent4b2d35f2ce4eecb8486ba671b623e42bbe8cd479 (diff)
(1) Now driving the LED on the Novena board with a bit from the debug port. (2) Changed noise pin to DX7 to work with Rev02 of the Noise board.
-rw-r--r--src/rtl/novena_fpga.v10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/rtl/novena_fpga.v b/src/rtl/novena_fpga.v
index 56af651..279c5b5 100644
--- a/src/rtl/novena_fpga.v
+++ b/src/rtl/novena_fpga.v
@@ -57,6 +57,7 @@ module novena_fpga(
//input wire F_DX11,
input wire F_DX3,
+ input wire F_DX7,
//input wire F_DX0,
//input wire F_LVDS_CK0_P,
@@ -79,13 +80,16 @@ module novena_fpga(
);
wire clk;
+ wire [7 : 0] test_debug;
+
IBUFGDS clkibufgds(
.I(CLK2_P),
.IB(CLK2_N),
.O(clk)
);
- assign FPGA_LED2 = 1'b1;
+ assign FPGA_LED2 = test_debug[0];
+ // assign FPGA_LED2 = 1'b1;
assign APOPTOSIS = 1'b0;
assign F_DX15 = 1'b1; //+5V P_DUT
@@ -139,8 +143,8 @@ module novena_fpga(
.clk(clk25),
.reset_n(1'b1),
- .noise(F_DX3),
-
+ .noise(F_DX7),
+ .debug(test_debug),
.SCL(I2C3_SCL),
.SDA(SDA_int),
.SDA_pd(SDA_pd)