From e3f62de02f96aabac7d592be3596a95366f21b6d Mon Sep 17 00:00:00 2001 From: NikLeberg Date: Tue, 8 Oct 2024 11:16:52 +0000 Subject: [PATCH] rtl/top: wait longer for LED toggle --- vhdl/top/tb/top_tb.vhdl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vhdl/top/tb/top_tb.vhdl b/vhdl/top/tb/top_tb.vhdl index 8bf36c6..668c7dc 100644 --- a/vhdl/top/tb/top_tb.vhdl +++ b/vhdl/top/tb/top_tb.vhdl @@ -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;