Improved documentation of all vhd modules except testbenches and lcd driver

This commit is contained in:
T-moe
2016-06-19 15:58:29 +02:00
parent 78ea176aac
commit f5f862c044
4 changed files with 163 additions and 142 deletions

View File

@@ -14,7 +14,7 @@ entity rotary_dec is
Port ( clk : in std_logic; -- Clock Input
A : in std_logic; -- Signal A
B : in std_logic; -- Signal B
btn : in std_logic; -- Button Input
btn : in std_logic; -- Button Input
btn_deb : out std_logic; -- Button Output Debonced
enc_right: out std_logic; -- Direction Output: 1=right
enc_ce : out std_logic); -- Clock Enable Output for signal above
@@ -23,44 +23,48 @@ end rotary_dec;
architecture Behavioral of rotary_dec is
signal a_old, b_old: std_logic := '0';
signal a_debounced_reg, a_debounced_next, b_debounced_reg, b_debounced_next : std_logic := '0';
signal btn_reg, btn_next: std_logic :='0';
signal counter_a_reg, counter_a_next,
signal a_old, b_old: std_logic := '0'; -- Registers for edge detection on debounced A, B signals
signal a_debounced_reg, a_debounced_next, -- Registers for debouncing A, B signals
b_debounced_reg, b_debounced_next : std_logic := '0';
signal btn_reg, btn_next: std_logic :='0'; -- Registers for debouncing Button Press signal
signal counter_a_reg, counter_a_next, -- Counters to smooth chittering = debounce signals
counter_b_reg, counter_b_next,
counter_btn_reg, counter_btn_next: unsigned(23 downto 0) := (others => '0');
constant count_max: unsigned(23 downto 0) := to_unsigned(500000,24); --10ms
constant count_max: unsigned(23 downto 0) := to_unsigned(500000,24); --Number of cycles during which a signal can't change it's value 50mhz*10ms= 500000 cycles
begin
-- State register process (sequential)
process(clk)
begin
if rising_edge(clk) then
counter_a_reg <= counter_a_next;
counter_b_reg <= counter_b_next;
counter_btn_reg <= counter_btn_next;
a_debounced_reg <= a_debounced_next;
b_debounced_reg <= b_debounced_next;
btn_reg <= btn_next;
a_old <= a_debounced_reg;
b_old <= b_debounced_reg;
btn_reg <= btn_next;
end if;
end process;
btn_deb <= btn_reg;
-- Debounce process (combinational)
process(A,B, a_debounced_reg, b_debounced_reg, counter_a_reg, counter_b_reg, btn_reg, btn, counter_btn_reg)
begin
-- If signal a has changed (edge detection) and enough time passed since the last change
if(A /= a_debounced_reg and counter_a_reg > count_max) then
a_debounced_next <= A;
counter_a_next <= (others => '0');
else
a_debounced_next <= a_debounced_reg;
counter_a_next <= counter_a_reg + 1;
a_debounced_next <= A; -- accept change
counter_a_next <= (others => '0'); -- reset counter
else -- singal has not changed, or not enough time has passed
a_debounced_next <= a_debounced_reg; -- keep old signal value
counter_a_next <= counter_a_reg + 1; -- increase counter by one
end if;
-- Same as above for signal B
if(B /= b_debounced_reg and counter_b_reg > count_max) then
b_debounced_next <= B;
counter_b_next <= (others => '0');
@@ -69,6 +73,7 @@ begin
counter_b_next <= counter_b_reg + 1;
end if;
-- Same as above for button press signal
if(btn /= btn_reg and counter_btn_reg > count_max) then
btn_next <= btn;
counter_btn_next <= (others => '0');
@@ -79,17 +84,20 @@ begin
end process;
btn_deb <= btn_reg; --Output debounced btn reg
-- Dekodierung der Ausgaenge
-- Ouput decode for Rotary Signals (A,B)
process(a_debounced_reg, b_debounced_reg, a_old, b_old)
variable state: std_logic_vector(3 downto 0);
begin
state := a_debounced_reg & b_debounced_reg & a_old & b_old;
state := a_debounced_reg & b_debounced_reg & a_old & b_old; -- Concat to vector
case state is
when "0001" => enc_right <= '0'; enc_ce <= '1';
when "0010" => enc_right <= '1'; enc_ce <= '1';
when others => enc_right <= '0'; enc_ce <= '0';
-- If you want a finer resolution you can simply add more cases here.
-- In our case we only have 1 case for left, and one for right, which works fine.
end case;
end process;