📄 i2c_test.vhd
字号:
WHEN seventh =>
IF (phase3 = '1') THEN
sda_buf <= '1';
link <= '1';
inner_state <= eighth;
END IF;
WHEN eighth =>
IF (phase3 = '1') THEN
link <= '0';
inner_state <= ack;
END IF;
WHEN ack =>
IF (phase0 = '1') THEN
sda_buf <= sda;
END IF;
IF (phase1 = '1') THEN
IF (sda_buf = '1') THEN
main_state <= "00";
END IF;
END IF;
IF (phase3 = '1') THEN
link <= '0';
inner_state <= first;
i2c_state <= read_data;
END IF;
WHEN OTHERS =>
NULL;
END CASE;
WHEN read_data =>
CASE inner_state IS
WHEN first =>
IF (phase0 = '1') THEN
sda_buf <= sda;
END IF;
IF (phase1 = '1') THEN
readData_reg(7 DOWNTO 1) <= readData_reg(6 DOWNTO 0);
readData_reg(0) <= sda;
END IF;
IF (phase3 = '1') THEN
inner_state <= second;
END IF;
WHEN second =>
IF (phase0 = '1') THEN
sda_buf <= sda;
END IF;
IF (phase1 = '1') THEN
readData_reg(7 DOWNTO 1) <= readData_reg(6 DOWNTO 0);
readData_reg(0) <= sda;
END IF;
IF (phase3 = '1') THEN
inner_state <= third;
END IF;
WHEN third =>
IF (phase0 = '1') THEN
sda_buf <= sda;
END IF;
IF (phase1 = '1') THEN
readData_reg(7 DOWNTO 1) <= readData_reg(6 DOWNTO 0);
readData_reg(0) <= sda;
END IF;
IF (phase3 = '1') THEN
inner_state <= fourth;
END IF;
WHEN fourth =>
IF (phase0 = '1') THEN
sda_buf <= sda;
END IF;
IF (phase1 = '1') THEN
readData_reg(7 DOWNTO 1) <= readData_reg(6 DOWNTO 0);
readData_reg(0) <= sda;
END IF;
IF (phase3 = '1') THEN
inner_state <= fifth;
END IF;
WHEN fifth =>
IF (phase0 = '1') THEN
sda_buf <= sda;
END IF;
IF (phase1 = '1') THEN
readData_reg(7 DOWNTO 1) <= readData_reg(6 DOWNTO 0);
readData_reg(0) <= sda;
END IF;
IF (phase3 = '1') THEN
inner_state <= sixth;
END IF;
WHEN sixth =>
IF (phase0 = '1') THEN
sda_buf <= sda;
END IF;
IF (phase1 = '1') THEN
readData_reg(7 DOWNTO 1) <= readData_reg(6 DOWNTO 0);
readData_reg(0) <= sda;
END IF;
IF (phase3 = '1') THEN
inner_state <= seventh;
END IF;
WHEN seventh =>
IF (phase0 = '1') THEN
sda_buf <= sda;
END IF;
IF (phase1 = '1') THEN
readData_reg(7 DOWNTO 1) <= readData_reg(6 DOWNTO 0);
readData_reg(0) <= sda;
END IF;
IF (phase3 = '1') THEN
inner_state <= eighth;
END IF;
WHEN eighth =>
IF (phase0 = '1') THEN
sda_buf <= sda;
END IF;
IF (phase1 = '1') THEN
readData_reg(7 DOWNTO 1) <= readData_reg(6 DOWNTO 0);
readData_reg(0) <= sda;
END IF;
IF (phase3 = '1') THEN
inner_state <= ack;
END IF;
WHEN ack =>
IF (phase3 = '1') THEN
link <= '1';
sda_buf <= '0';
inner_state <= stop;
END IF;
WHEN stop =>
IF (phase1 = '1') THEN
sda_buf <= '1';
END IF;
IF (phase3 = '1') THEN
main_state <= "00";
END IF;
WHEN OTHERS =>
NULL;
END CASE;
WHEN OTHERS =>
NULL;
END CASE;
WHEN OTHERS =>
NULL;
END CASE;
END IF;
END PROCESS;
---///////////////////////////数码管显示部分/////////////
PROCESS(clk,rst)
BEGIN
IF (NOT rst = '1') THEN
cnt_scan <= "000000000000";
en_xhdl3 <= "10";
ELSIF(clk'event and clk='1')THEN
cnt_scan <= cnt_scan + "000000000001";
IF (cnt_scan = "111111111111") THEN
en_xhdl3 <= NOT en_xhdl3;
END IF;
END IF;
END PROCESS;
PROCESS(writeData_reg,readData_reg,en_xhdl3)
BEGIN
CASE en_xhdl3 IS
WHEN "01" =>
seg_data_buf <= writeData_reg;
WHEN "10" =>
seg_data_buf <= readData_reg;
WHEN OTHERS =>
seg_data_buf <= "00000000";
END CASE;
END PROCESS;
process(seg_data_buf)
begin
case seg_data_buf is
when "00000000" => qout <= "01000000"; -- 0
when "00000001" => qout <= "01111001"; -- 1
when "00000010" => qout <= "00100100"; -- 2
when "00000011" => qout <= "00110000"; -- 3
when "00000100" => qout <= "00011001"; -- 4
when "00000101" => qout <= "00010010"; -- 5
when "00000110" => qout <= "00000010"; -- 6
when "00000111" => qout <= "01111000"; -- 7
when "00001000" => qout <= "00000000"; -- 8
when "00001001" => qout <= "00010000"; -- 9
when "00001010" => qout <= "00001000"; -- A
when "00001011" => qout <= "00000011"; -- b
when "00001100" => qout <= "00100111"; -- c
when "00001101" => qout <= "00100001"; -- d
when "00001110" => qout <= "00000110"; -- E
when "00001111" => qout <= "00001110"; -- F
when others => NULL;
end case;
end process;
END translated;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -