Alert.png

Notice: This page contains information for the legacy Phidget21 Library.

Phidget21 is out of support. Bugfixes may be considered on a case by case basis.

Phidget21 does not support VINT Phidgets, or new USB Phidgets released after 2020. We maintain a selection of legacy devices for sale that are supported in Phidget21.

We recommend that new projects be developed against the Phidget22 Library.


Click on the 2phidget22.jpg button in the menu bar to go to the Phidget22 version of this page.

Alert.png

3400 User Guide

From Phidgets Legacy Support


Getting Started

The USB to Serial Converter allows you to connect Serial Devices to the PhidgetSBC using one of its USB connectors.

The USB to Serial Converter is not a Phidget device and therefore, the Converter or any devices connected to it cannot be controlled using Phidgets APIs. Using this product requires a working knowledge of Linux.

Here is a short manual showing you how to use the Converter on a PhidgetSBC.

Connect the Converter to the PhidgetSBC

1. Log onto the SBC via SSH. Your SBC may be running an older version of firmware that does not support the USB to Serial Converter, requiring you to update your SBC firmware to the latest version.

3400 0 Connecting The Hardware.jpg

2. Plug the USB to Serial converter into an available USB port on the Phidget SBC. The SBC should automatically recognize the converter.

3. Type dmesg | tail –n 5 on the SBC to view the last 5 lines of the kernel’s message buffer. You should see something similar to the lines below:

usb 1-1.1: new full speed USB device using s3c2410-ohci and address 8
usb 1-1.1: configuration #1 chosen from 1 choice
pl2303 1-1.1:1.0: pl2303 converter detected
usb 1-1.1: pl2303 converter now attached to ttyUSB0

The SBC has recognized the Prolific PL2303 USB to serial converter, and has created a new serial port for it, which can be accessed at /dev/ttyUSB0

Test the Converter using your PC serial port

One way of testing the USB to Serial Converter is by connecting the SBC to a serial port on your PC using a Null modem cable. If your computer does not have a serial port, you can still perform the test by using a second USB to Serial Converter to connect the Null modem cable to a USB port on your PC.

Log in via the Serial Converter

Remount the root filesystem on the SBC as read/write so that we can make changes to it. Type the following command:

mount –o remount rw /

4. Make a backup copy of our inittab file. We will be changing this file, so it’s a good idea to have a backup to revert to, should anything go wrong. Type the following:

cp /etc/inittab /etc/inittab.backup

5. Use the vi editor on the SBC to edit /etc/inittab and add the following line to the file; this command tells the SBC to start a terminal on ttyUSB0 using 115200 baud bitrate, and vt100 emulation. Type the following:

ttyUSB0:23:respawn:/sbin/getty -L ttyUSB0 115200 vt100

6. Edit /etc/securetty, and add ttyUSB0 to the end of the file. This is the list of devices that root is allowed to log on from.

7. Reboot the SBC using the reboot command

Make sure everything works

1. Connect the serial converter to your PC’s serial port using a null modem cable.

3400 0 PuTTY Screen.jpg

2. Open up the com port (eg: COM1) on your PC using a terminal program like hyperterminal, or PuTTY, using 115200 as the baud rate.

3400 0 PuTTY Connected.jpg

3. When connected, you will see a login prompt similar to the one below. You can now log in to your SBC via the serial port just like you would from an SSH connection.

3400 0 Serial Adapter To Computer.jpg

4. Be sure to undo the changes you have made in the /etc directory.

Communication from a C program

You should already have your USB to Serial adapter plugged in, and it should already be attached as /dev/ttyUSB0. Included on the USB to Serial Converter product page is an example c program that you can use to echo text sent from a host computer back to it.

This program is configured to run at 38400 baud. Compile and execute it on the SBC. Plug your Null Modem cable into the PC and set up a connection to run at 38400 baud. When you type a string on the PC, followed by Enter, the SBC will add ‘1’ to each character and echo it back to you.