This is an old revision of the document!
PuTTY Setup
PuTTY is a serial console, a computer program that can listen for and display characters sent over a serial link.
This is used in the UART labs so the NEXYS4 and the lab computer can communicate with each other over USB serial communication.
Find Serial Port
First you must find out which serial port the USB Serial port is using on your lab computer. Complete the following to do this:
Windows
Open your computer's Device Manager.
Open the Start menu, type in Device Manager to find it.
When it says “You are logged on as a standard user…” click OK.
Find and open the “Ports (COM & LPT)” section.
Read the COM number for the “USB Serial Port.” In this case it's COM5. Remember this number for later.
Linux
From a command terminal, run: “sudo dmesg | grep tty”. This will print out a list of system messages related to active TTY (serial line) ports. The only response seen so far will be about ttyUSB0 and ttyUSB1. Port ttyUSB1 usually seems to be the one that the board is connected to - if it fails to connect then try ttyUSB0.
Setup PuTTY
Open PuTTY
Open the “Serial” window under “Connection”
Set “Serial line to connect to” to the serial port from earlier in this tutorial. In this example it is COM5 but it may be other ports on Windows. For Linux it will be of the form: /dev/ttyUSB1 (the /dev part is important).
Set “Speed (baud)” to “19200”
Set “Data bits” to 8
Set “Stop bits” to 1
Set “Parity” to “Odd”
Set Flow Control to “None”
Go to the “Session” window.
Select “Serial” under “Connection type”
Your earlier saved values should now be visible.
Click Open