Altera_Forum
Honored Contributor
14 years agoD5M camera ambiguous Demo
Hi,
I have connected the D5M camera to the DE2-115 board and ran the demo . It worked fine but when I jumped into the code to understand what's happening I found no documentation and the code wasn't commented at all . I have many questions : 1 - Are there any docs explaining the code and the system design ? 2 - Does this demo include the IP Core ? Where is the IP Core ? 3 - I don't understand what's the line buffer is doing especially this part ? What are those subwires doing :
wire sub_wire0;
wire sub_wire5;
wire sub_wire3 = sub_wire0;
wire sub_wire4 = sub_wire0;
wire sub_wire2 = sub_wire0;
wire sub_wire1 = sub_wire2;
wire taps2x = sub_wire1;
wire taps1x = sub_wire3;
wire taps0x = sub_wire4;
wire shiftout = sub_wire5;
altshift_taps altshift_taps_component (
.clken (clken),
.clock (clock),
.shiftin (shiftin),
.taps (sub_wire0),
.shiftout (sub_wire5)
// synopsys translate_off
,
.aclr ()
// synopsys translate_on
);