MCU等是属于软件编程,程序是顺序执行,即使像DSP有多级流水线,但是程序总体还是顺序的。
FPGA是属于硬件编程,程序是并行执行的,可以有多个进程,同时执行不同的功能。
2. FPGA实现UART,IIC,SPI。
如果是简单的应用(比如说不用校验等等),完全可以自己写,例如下面的程序,VHDL写的,既可以作为UART发送程序(改改就是接收),也可以做SPI发送或者接收(加一个时钟)。
如果需要较完善的功能的话,建议使用IP核,往上有很多免费的UART,IIC,SPI等接口的IP核,功能及代码都给你写好了的,提供输入输出接口,方便应用。
process(Clk)
variable temp : integer range 0 to 7
begin
if Clk'event and Clk='1' then
if Reset = '0' then
TxD <= '1'
BitCnt <= "00000"
SL<='1'
TReg<=(others=>'0')
temp:=0
elsif Load = '0' and temp=0 then
TxD <= '1'
SL<='1'
BitCnt <= "00000"
temp:=0
elsif Load='1' and temp=0 then
temp:=1
elsif temp=1 then
case BitCnt is
when "00000" =>
TReg <= Addr_Data
SL<='0'
TxD <= '0'
BitCnt <= BitCnt + 1
temp:=1
when "00001" | "00010" | "00011" |
"00100" | "00101" | "00110" |
"00111" | "01000" | "01001" |
"01010" | "01011" | "01100" |
"01101" | "01110" | "01111" =>
TxD <= TReg(0)
TReg <= '1' &TReg(14 downto 1)
BitCnt <= BitCnt + 1
temp:=1
when "10000" =>
SL<='1'
TxD <= '1'
TReg <= '1' &TReg(14 downto 1)
BitCnt <= "00000"
temp:=0
when others =>NULL
end case
ELSE
TXD<='1'
SL<='1'
end if
end if
end process
iic透传,你这样不行的。透传电路应该是跟踪通讯的状态,比如一次传输可以定义状态IDLE,START,MOSI,ACK,MOSI,ACK,RESTART,MOSI,ACK,MISO,ACK,STOP。
每次状态机到了ACK状态的时候切换一下透传方向。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)