You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+9-5Lines changed: 9 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,13 +4,17 @@ Simple UART (Universal Asynchronous Receiver & Transmitter) module for serial co
4
4
5
5
**The default settings are 115200 baud rate, 8 data bits, 1 stop bit, no parity, disable input data FIFO, 50 MHz system clock.**
6
6
7
-
The UART module was tested in hardware. In the near future it will be implemented generic support for parity bit and set the number of stop bits. Stay tuned!
7
+
The UART module was tested in hardware. In the near future it will be implemented generic support settings of stop bits. Stay tuned!
8
8
9
9
**Synthesis resource usage summary:**
10
10
11
-
Input FIFO | LE (LUT) | FF | BRAM
12
-
--- | --- | --- | ---
13
-
disable | 72 | 46 | 0
14
-
enable | 110 | 63 | 1
11
+
Parity | Input FIFO | LE (LUT) | FF | BRAM
12
+
--- | --- | --- | --- | ---
13
+
none | disable | 72 | 46 | 0
14
+
none | enable | 110 | 63 | 1
15
+
even/odd | disable | 82 | 49 | 0
16
+
even/odd | enable | 121 | 66 | 1
17
+
mark/space | disable | 77 | 49 | 0
18
+
mark/space | enable | 115 | 66 | 1
15
19
16
20
*Synthesis was performed using Quartus II 64-Bit Version 13.0.1 with default settings for FPGA Altera Cyclone II.*
0 commit comments