Forum Discussion
Altera_Forum
Honored Contributor
14 years agoThank you for replying thepancake :)
Anyhow, I am able to generate and compile it without any errors but it doesn't seem to be working when I connect the input and output signal. It seems like the median filter core function never get "ready" to accept any input? output din_ready; input din_valid; input [9:0] din_data; input din_startofpacket; input din_endofpacket; input dout_ready; output dout_valid; output [9:0] dout_data; output dout_startofpacket; output dout_endofpacket; I suppose we should first get a "din_ready" signal from the core function first before we input any data to it based on the input and output signals of the core function. Correct me if I am wrong or if there is any steps need to be taken care before using it? Thanks alot!:) Regards, PS