|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
x
将输入的数据用SPI口输出,address和datain都是从上一级ram模块过来的数据,都已经稳定,full为1指示ram满可以开始从spi口输出数据
现在的问题是用maxplus编译时它总是将datain作为无用的信号去掉,请问我的程序错在那里啊
谢谢!!
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
use ieee.std_logic_arith.all;
entity spi is
port(clk:in std_logic;--输入时钟
datain:in std_logic_vector(15 downto 0);--输入数据
address:in std_logic_vector(3 downto 0);--输入地址
reset:in std_logic;--复位信号
full:in std_logic;--指示数据满
empty ut std_logic;--指示数据开始输出
spi_DA12_clk ut std_logic;--输出的SPI时钟
spi_DA12_din ut std_logic;--spi输入数据
spi_DA12_cs_n:out std_logic;--spi器件片选信号
spi_DA34_clk:out std_logic;--输出的SPI时钟
spi_DA34_din:out std_logic;--spi输入数据
spi_DA34_cs_n:out std_logic;--spi器件片选信号
ldac_DA12_n:out std_logic; --指示启动ad转换
ldac_DA34_n:out std_logic; --指示启动ad转换 --_n表示低有效
int_n:out std_logic --向控制器产生中断
);
end spi;
architecture a of spi is
type m_structure is (Idle,Start_spi,DA12_spi,DA34_spi,Start_DA12,START_DA34,DAint);
signal main_machine:m_structure;
signal next_machine:m_structure;
signal data_out:std_logic;--指示数据出
signal main_counter:integer range 18 downto 0;--主计数器
signal temp_data:std_logic_vector(17 downto 0);--SPI输出数据
begin
process(clk)
begin
if rising_edge(clk) then
main_machine<=next_machine;
end if;
end process;--状态机运行
spi_DA34_clk<=not clk;--spi口时钟
spi_DA12_clk<=not clk;
process(reset,clk)
begin
if reset='1' then
next_machine<=Idle;
main_counter<=0;
empty<='1';
data_out<='1';
spi_DA12_din<='1';--spi输入数据
spi_DA12_cs_n<='1';--spi器件片选信号
int_n<='1';
spi_DA34_din<='1';--spi输入数据
spi_DA34_cs_n<='1';--spi器件片选信号
ldac_DA12_n<='1'; --指示启动ad转换
ldac_DA34_n<='1'; --指示启动ad转换
elsif rising_edge(clk) then
case main_machine is
when idle=>
if full='1' then
next_machine<=Start_spi;
data_out<=not data_out;
else
next_machine<=Idle;--next_machine<=Idle;
end if;
when Start_spi=>
empty<=data_out;
case address is
when "0001"=>
main_counter<=0;
temp_data<="01"&datain;
next_machine<=DA12_spi;
when "0011"=>
main_counter<=0;
temp_data<="10"&datain;
next_machine<=DA12_spi;
when "0101"=>
main_counter<=0;
temp_data<="0000"&datain(15 downto 2);
next_machine<=DA34_spi;
when "0111"=>
main_counter<=0;
temp_data<="1000"&datain(15 downto 2);
next_machine<=DA34_spi;
when others=>
next_machine<=Idle;
end case;
when DA12_spi=>
if main_counter<18 then
spi_DA12_cs_n<='0';
spi_DA12_din<=temp_data(17);
temp_data<=temp_data(17 downto 1)&'0';
main_counter<=main_counter+1;
else
spi_DA12_cs_n<='1';
spi_DA12_din<='Z';
main_counter<=0;
next_machine<=Start_DA12;
end if;
when DA34_spi=>
if main_counter<16 then
spi_DA34_cs_n<='0';
spi_DA34_din<=temp_data(17);
temp_data<=temp_data(17 downto 1)&'0';
main_counter<=main_counter+1;
else
spi_DA34_cs_n<='1';
spi_DA34_din<='Z';
main_counter<=0;
next_machine<=Start_DA34;
end if;
when Start_DA12=>
if main_counter<1 then
ldac_DA12_n<='0';
main_counter<=main_counter+1;
else
ldac_DA12_n<='1';
main_counter<=0;
next_machine<=DAint;
end if;
when Start_DA34=>
if main_counter<1 then
ldac_DA34_n<='0';
main_counter<=main_counter+1;
else
ldac_DA34_n<='1';
main_counter<=0;
next_machine<=DAint;
end if;
when DAint=>
if main_counter<2 then
int_n<='0';
main_counter<=main_counter+1;
else
int_n<='1';
main_counter<=0;
next_machine<=Idle;
end if;
when others=>
next_machine<=Idle;
end case;
end if;
end process;
end a;
|
|