Guest
Hi
Im trying to send a byte via RS output (txd line)
my code :
....
process(SCL)
begin
ADCAdressWR <= "00010011"; --byte to send
if rising_edge(SCL) then
for i in 0 to 7 loop
txd <= ADCAdressWR(i);
end loop;
end if;
On terminal i can see only 00.
Im newbie to VHDL, so i'm asking for i little help
thx in advance
Im trying to send a byte via RS output (txd line)
my code :
....
process(SCL)
begin
ADCAdressWR <= "00010011"; --byte to send
if rising_edge(SCL) then
for i in 0 to 7 loop
txd <= ADCAdressWR(i);
end loop;
end if;
On terminal i can see only 00.
Im newbie to VHDL, so i'm asking for i little help
thx in advance