(→SW Installation) |
(→Using HAT SW to control usb and power switches.) |
||
| Line 94: | Line 94: | ||
1. Connect HAT device to USB port and start HAT driver. | 1. Connect HAT device to USB port and start HAT driver. | ||
| - | |||
$ hat_drv & | $ hat_drv & | ||
Contents |
HAT device is test hardware to PC USB interface, which allows accurate measurements from DUT. Device has two switchable power outputs and two switchable USB paths. The power and data lines of the USB can switched on or off separately. HAT device has also four sensor inputs for different sensors. Currently only current measurement sensor is available, but other sensors will be available soon. Sensor inputs without sensor HW can be directly used to measure voltage levels if needed.
Sensors inputs:
USB:
Power
HAT-control is software that is used to control HAT (Hardware Accessory for Testing) device. SW contains two applications. Driver (hat_drv) application controls HAT device via USB. The control SW (hat_ctrl) controls HAT device using driver. Communication between driver and control processes is done using shared memory.
HAT-control sw can be installed to Ubuntu 10.04. It should work also other distributions, but it is not tested yet.
HAT SW dependences:
Libusb installation:
1. Install libusb-1.0.x package:
sudo apt-get install libusb-1.0
glib-2.0 installation:
1. Install glib-2.0 package:
sudo apt-get install libglib2.0-dev
Liblabjackusb installation:
1. Get exodriver sources:
git clone https://github.com/labjack/exodriver.git
2. Go liblabjackusb folder
$ cd exodriver/liblabjackusb
3. Build library
$ make
4. Install library
$ sudo make install
5. Liblabjackusb needs access to the /dev/bus/usb. Run following commands in labjack-exodriver root folder.
$ cd .. $ sudo cp 10-labjack.rules /etc/udev/rules.d $ sudo udevadm control --reload-rules
Building HAT SW
1. Build HAT SW:
Get sources using git (or some otherway):
$ git clone git://gitorious.org/meego-quality-assurance/hat-control.git
Go to hat-control folder and compile sources (autoconf, automake, libtool and pkg-config are required)
$ autoreconf -i $ ./configure --prefix=/usr $ make $ sudo make install
1. Connect HAT device to USB port and start HAT driver.
$ hat_drv &
Driver should print 'hat_drv: HAT driver started succesfully', if it has started succesfully. It also shows serial numeber of the controller device.
2. Use hat_ctrl SW to control HAT device. For example switch power output 1 on
$ hat_ctrl -pwr1=on
Get all parameters just type
$ hat_ctrl --help
Multiple HAT support
Multiple HAT support will be added in couple of weeks. HAT driver and control software will have new parameter "-SN [SerialNumber]" which will specify the HAT device. When you have only one HAT device, you don't need to add "-SN" parameter. So, no modifications to excistence setup is needed if used only one HAT device.
New current sensor
The HAT Current Sensor can be used with HAT device by connecting it to one of the sensor inputs of HAT device. The sensor can be used for measuring the current from the device under test (DUT). The sensor has two measurement ranges, 0-100mA and 0-1.5A. The range is software selectable.
HAT SW is now very early state. There might be major changes in the near future. Command line parameters might change in near future.