Forum Discussion
Altera_Forum
Honored Contributor
13 years agook, so for the ADC, would this work ?
if(clk'event and clk ='1') thenadc_out(12 downto 0) <= analog_in(12 downto 0);
adc_out(13) <= not analog_in(13);
end if; Now the MSB and the rest of the word are synchronised right ? And for the DAC, would it be better to replace analog_signal directly with analog_out ? Although i don't see how this will convert a digital signal to an analogue signal...