File tree Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -12,9 +12,22 @@ use IEEE.STD_LOGIC_1164.ALL;
12
12
use IEEE.NUMERIC_STD.ALL ;
13
13
use IEEE.MATH_REAL.ALL ;
14
14
15
+ -- SIMPLE UART FOR FPGA
16
+ -- ====================
15
17
-- UART FOR FPGA REQUIRES: 1 START BIT, 8 DATA BITS, 1 STOP BIT!!!
16
18
-- OTHER PARAMETERS CAN BE SET USING GENERICS.
17
19
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
+
18
31
entity UART is
19
32
Generic (
20
33
CLK_FREQ : integer := 50e6 ; -- system clock frequency in Hz
You can’t perform that action at this time.
0 commit comments