Skip to content

Commit 7235180

Browse files
committed
Added description of released versions to UART top module.
1 parent 8181d67 commit 7235180

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

rtl/uart.vhd

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,22 @@ use IEEE.STD_LOGIC_1164.ALL;
1212
use IEEE.NUMERIC_STD.ALL;
1313
use IEEE.MATH_REAL.ALL;
1414

15+
-- SIMPLE UART FOR FPGA
16+
-- ====================
1517
-- UART FOR FPGA REQUIRES: 1 START BIT, 8 DATA BITS, 1 STOP BIT!!!
1618
-- OTHER PARAMETERS CAN BE SET USING GENERICS.
1719

20+
-- DESCRIPTION OF RELEASED VERSIONS:
21+
-- =================================
22+
-- Version 1.0 - released on 27 May 2016
23+
-- Initial release.
24+
-- Version 1.1 - released on 20 December 2018
25+
-- Added better debouncer.
26+
-- Added simulation script and Quartus project file.
27+
-- Removed unnecessary resets.
28+
-- Signal BUSY replaced by DIN_RDY.
29+
-- Many other optimizations and changes.
30+
1831
entity UART is
1932
Generic (
2033
CLK_FREQ : integer := 50e6; -- system clock frequency in Hz

0 commit comments

Comments
 (0)