mirror of
https://github.com/cclassic/ws2812b-vhdl
synced 2024-11-21 08:55:04 +01:00
Bugfix and cleanup in demo rainbow
This commit is contained in:
parent
21d75d5d2f
commit
afef8ef269
@ -149,24 +149,22 @@ begin
|
|||||||
end procedure;
|
end procedure;
|
||||||
begin
|
begin
|
||||||
if rst = '1' then
|
if rst = '1' then
|
||||||
pixData_red <= to_unsigned(PIXDATA_MAX, pixData_red'length);
|
pixData_red <= to_unsigned(PIXDATA_MAX, pixData_red'length);
|
||||||
pixData_green <= (others => '0');
|
pixData_green <= (others => '0');
|
||||||
pixData_blue <= (others => '0');
|
pixData_blue <= (others => '0');
|
||||||
pixData_red_start <= to_unsigned(PIXDATA_MAX, pixData_red'length);
|
pixData_red_start <= to_unsigned(PIXDATA_MAX, pixData_red'length);
|
||||||
pixData_green_start <= (others => '0');
|
pixData_green_start <= (others => '0');
|
||||||
pixData_blue_start <= (others => '0');
|
pixData_blue_start <= (others => '0');
|
||||||
--pixData_valid <= '0';
|
color_transition_live <= RY;
|
||||||
color_transition_live <= RY;
|
color_transition_start <= RY;
|
||||||
pixCount <= 0;
|
pixCount <= 0;
|
||||||
render_active <= '0';
|
render_active <= '0';
|
||||||
elsif rising_edge(clk) then
|
elsif rising_edge(clk) then
|
||||||
-- Render one strip
|
-- Render one strip
|
||||||
if render_active = '1' then
|
if render_active = '1' then
|
||||||
if pixData_next = '1' then
|
if pixData_next = '1' then
|
||||||
--pixData_valid <= '1';
|
|
||||||
if pixCount = LENGTH - 1 then
|
if pixCount = LENGTH - 1 then
|
||||||
pixCount <= 0;
|
pixCount <= 0;
|
||||||
--pixData_valid <= '0'; -- Insert inter-strip delay
|
|
||||||
render_active <= '0';
|
render_active <= '0';
|
||||||
else
|
else
|
||||||
pixCount <= pixCount + 1;
|
pixCount <= pixCount + 1;
|
||||||
|
Loading…
Reference in New Issue
Block a user