Files
DESD/LAB3/src/edge_detector_toggle.vhd
Davide 9c20fe7e7c Add initial implementations for various audio processing components
- Created LFO entity for low-frequency oscillation control.
- Added all_pass_filter entity for signal processing.
- Implemented balance_controller for audio balance adjustments.
- Developed debouncer to stabilize input signals.
- Introduced digilent_jstk2 for joystick data handling.
- Added edge_detector_toggle for edge detection functionality.
- Created effect_selector to manage audio effects based on joystick input.
- Implemented jstk_uart_bridge for communication between joystick and UART.
- Developed led_controller for LED management.
- Introduced led_level_controller for controlling multiple LEDs.
- Created moving_average_filter for smoothing input signals.
- Added moving_average_filter_en with enable functionality.
- Implemented mute_controller to handle mute functionality.
- Developed volume_controller for volume adjustments.
- Introduced volume_multiplier for scaling audio signals.
- Created volume_saturator to ensure audio signals stay within bounds.
2025-05-11 12:43:38 +02:00

21 lines
351 B
VHDL

library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
entity edge_detector_toggle is
generic (
EDGE_RISING : boolean := true
);
port (
input_signal : in std_logic;
clk : in std_logic;
reset : in std_logic;
output_signal : out std_logic
);
end edge_detector_toggle;
architecture Behavioral of edge_detector_toggle is
begin
end Behavioral;