Delay in Verilog Programme

this verilog coding is for a sorter that moves in two directions after detection of bar code (black or white) from the bin. However after the detection, by the time bin reaches the sorting arm through conveyor, its already in its initial position. So what i need is a delay of 5seconds after the detection. HOw to adjust that in the coding?


module trial(clk, a, b, RCServo_pulse);
input clk;
input a, b;
output RCServo_pulse;
reg [7:0] RxD_data_reg;
always @(posedge clk)
begin
if ((~a) & (~b)) begin
RxD_data_reg <= 8'b00000000;
end
else
if (((~a) & b) | (a & (~b))) begin
RxD_data_reg <= 8'b11111100;
end
else
if (a & b)
#10000 begin
RxD_data_reg <= 8'b10000000;
end
end

parameter ClkDiv = 195; // 50000000/1000/256 = 195.31

reg [7:0] ClkCount;
reg ClkTick;
always @(posedge clk) ClkTick <= (ClkCount==ClkDiv);
always @(posedge clk) if(ClkTick) ClkCount <= 0; else ClkCount <= ClkCount + 1; /* reset ClkCount when 1 tick
else continue counting*/
reg [11:0] PulseCount;
always @(posedge clk) if(ClkTick) PulseCount <= PulseCount + 1; // for each tick increment pulsecount 1

// make sure the RCServo_position is stable while the pulse is generated
reg [7:0] RCServo_position;
always @(posedge clk) if(PulseCount==0) RCServo_position <= RxD_data_reg; /*first time through Pulsecount output width of pulse
thereafter output 0 until time for next pulse*/
reg RCServo_pulse;
always @(posedge clk)
RCServo_pulse <= (PulseCount < {4'b0001, RCServo_position});
endmodule

Replies

You are reading an archived discussion.

Related Posts

A great way to feel inspired is by seeing what others (who are probably much younger or older than you) are doing. Share in this thread - 1. Your age...
We are surrounded by 100s of women entrepreneur stories. Right from the local boutique shop to the famous likes of Preetha Reddy or Kiran Mazumdar Shaw. There stories are special...
First of all, do you believe in the potential of Network Marketing or Multi-level Marketing? For the un-initiated : 'Networking Marketing' is a marketing strategy where the sales force is...
[h=6]Hi Friends ,I found this story...it's awesome..Plz do read it till the end.. When things in your life seem, almost too much to handle, When 24 Hours in a day...
A social entrepreneur recognizes a social problem and uses entrepreneurial principles to organize, create and manage a venture to achieve social change. Such startups are called social ventures. I heard...