Skip to content
Snippets Groups Projects
Commit 3902d2dd authored by Eric Kooistra's avatar Eric Kooistra
Browse files

Use v.busy, instead of r.busy, to allow start_pulse at mm_done, to support...

Use v.busy, instead of r.busy, to allow start_pulse at mm_done, to support zero gaps between output blocks.
parent d8e8d662
No related branches found
No related tags found
1 merge request!159Use v.busy, instead of r.busy, to allow start_pulse at mm_done, to support...
......@@ -124,7 +124,11 @@ BEGIN
IF r.busy = '0' AND start_pulse = '1' THEN
-- initiate next block
v.busy := '1';
ELSIF r.busy = '1' THEN
END IF;
-- use v.busy, instead of r.busy, to allow start_pulse at mm_done, to
-- support zero gaps between output blocks
IF v.busy = '1' THEN
IF out_siso.ready = '1' THEN
-- continue with block
mm_mosi.rd <= '1';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment