Which USB-TTL converter did you used? The one we used is PL2303 chipset solution and the driver is built-in Linux Distro. So you might need to install the driver on your PC first in the other case.
That instance of USB-TTL converter which I received doesn’t work. This is visible by kernel driver, minicom, and kermit but doesn’t transfer data. Probably this error related to 3.3V (pin 20) connection.
When you will edit documentation please double check do we need the pin20.
I think 3.3V pin should be disconnected to avoid problems.
I have taken other converter and can say that kermit and minicom work properly.
Could you please post the output of dmesg when you plug in the USB-TTL converter on the PC side.
Here a kernel with usbserial support but without pl2303 support:
- No tty will be attached:
#dmesg
[670693.025588] usb 3-1.3: new full-speed USB device number 7 using usb20_host
[670693.126332] usb 3-1.3: New USB device found, idVendor=067b, idProduct=2303
[670693.126465] usb 3-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[670693.126563] usb 3-1.3: Product: USB-Serial Controller
[670693.126654] usb 3-1.3: Manufacturer: Prolific Technology Inc.
Here a kernel with usbserial support: (works out of the box on Raspberry Pi)
- here ttyUSB0 is attached:
[ 1861.683813] usb 1-1.4: new full-speed USB device number 16 using dwc_otg
[ 1861.785944] usb 1-1.4: New USB device found, idVendor=067b, idProduct=2303
[ 1861.785968] usb 1-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 1861.785985] usb 1-1.4: Product: USB-Serial Controller
[ 1861.786004] usb 1-1.4: Manufacturer: Prolific Technology Inc.
[ 1861.789326] pl2303 1-1.4:1.0: pl2303 converter detected
[ 1861.793521] usb 1-1.4: pl2303 converter now attached to ttyUSB0
You can use the minicom program for serial communication:
sudo apt-get install minicom
@Gouwa: For me it was not sufficient to execute: $ sudo usermod -a -G dialout myusername to enable access. Rather I needed to execute $ sudo chmod 777 /dev/ttyUSB0 before. Maybe you could add this information to the ‘Setup Serial Debugging Tool’-Doc