Skip to content

Commit

Permalink
rtl/top: wait longer for LED toggle
Browse files Browse the repository at this point in the history
  • Loading branch information
NikLeberg committed Oct 8, 2024
1 parent 80552ed commit e3f62de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vhdl/top/tb/top_tb.vhdl
Original file line number Diff line number Diff line change
Expand Up @@ -76,13 +76,13 @@ BEGIN

FOR i IN 0 TO 3 LOOP
-- Wait for LSB gpio bit to go low.
WAIT UNTIL s_gpio0_o(0) = '0' FOR 200 us;
WAIT UNTIL s_gpio0_o(0) = '0' FOR 500 us;
ASSERT s_gpio0_o(0) = '0'
REPORT "LED0 was not observed to go low, did hart0 run?"
SEVERITY failure;

-- Wait for LSB gpio bit to go high.
WAIT UNTIL s_gpio0_o(0) = '1' FOR 200 us;
WAIT UNTIL s_gpio0_o(0) = '1' FOR 500 us;
ASSERT s_gpio0_o(0) = '1'
REPORT "LED0 was not observed to go high, did hart0 run?"
SEVERITY failure;
Expand Down

0 comments on commit e3f62de

Please sign in to comment.