Forum Discussion
Altera_Forum
Honored Contributor
11 years agoYou can keep on using the 24mhz clock and 8 sample. You can simply define a counter and inside the always @(posedge clk) process you place the sampling in a conditional statement. For example:
counter <= counter + 1; if (counter == 1000) begin <sample here the input> counter <= 0; end