Skip to content
Hlab edited this page Dec 11, 2012 · 21 revisions

Version Tracking

Version 1.1

Version 1.2

Changed the original serial_server_v1_1 found among provided LabRAD modules

  • support for both windows and linux
  • additional settings for flushing input and output

Troubleshooting

Ubuntu Ports Not Found

On Linux, if no serial ports are found, make sure the user has the right permissions to open the serial ports.

ls -l /dev/

For instance, one can add the user to the group dialout

adduser username dialout

To make sure one can open the port, use the python serial library, i.e

import serial
ser = serial.Serial('/dev/ttyUSB0')

Clone this wiki locally