JacquesKleynhans
Member level 2
I have a pruning issue:
if I have the folowing as output
(293) sda_out <= '0' when reset = '1' else sda when rising_edge(sccbclk_inv);
Iget this warning which screws up my program
W CL169 Pruning Register sda_out_cl_2 sccb.vhd (293) sccb_write.srr (23) 14:45:14 Thu Apr 22 compilerReport
Its in inout declared in the top of my code.
If i do it like this it works but then my output is not offsetted by the sccbclk_inv
sda_out <= sda;
Anyone have any clue ??
if I have the folowing as output
(293) sda_out <= '0' when reset = '1' else sda when rising_edge(sccbclk_inv);
Iget this warning which screws up my program
W CL169 Pruning Register sda_out_cl_2 sccb.vhd (293) sccb_write.srr (23) 14:45:14 Thu Apr 22 compilerReport
Its in inout declared in the top of my code.
If i do it like this it works but then my output is not offsetted by the sccbclk_inv
sda_out <= sda;
Anyone have any clue ??