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
+8-11Lines changed: 8 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -2,19 +2,16 @@
2
2
3
3
Simple UART (Universal Asynchronous Receiver & Transmitter) module for serial communication with an FPGA. The UART module was implemented using VHDL.
4
4
5
-
**The default settings are 115200 baud rate, 8 data bits, 1 stop bit, no parity, disable input data FIFO, 50 MHz system clock.**
5
+
**Simple UART for FPGA requires: 1 start bit, 8 data bits, 1 stop bit!**
6
6
7
-
The UART module was tested in hardware. In the near future it will be implemented generic support settings of stop bits. Stay tuned!
7
+
The UART module was simulated and tested in hardware.
8
8
9
9
**Synthesis resource usage summary:**
10
10
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
11
+
Parity | LE (LUT) | FF | BRAM
12
+
--- | --- | --- | ---
13
+
none | 80 | 55 | 0
14
+
even/odd | 91 | 58 | 0
15
+
mark/space | 84 | 58 | 0
19
16
20
-
*Synthesis was performed using Quartus II 64-Bit Version 13.0.1 with default settings for FPGA Altera Cyclone II.*
17
+
*Synthesis was performed using Quartus II 64-Bit Version 13.0.1 for FPGA Altera Cyclone II with these settings: 115200 baud rate and 50 MHz system clock .*
0 commit comments