summaryrefslogtreecommitdiffstats
path: root/tests/autotrigger.sh
blob: b7318c8f5984ca7a2befd27af64ef5f43d3241a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#! /bin/bash

function pci {
    PCILIB_PATH=`which pci`
    #LD_LIBRARY_PATH="$PCILIB_PATH" 
    $PCILIB_PATH/pci $*
}

echo "Starting the grabber"
pci -g -o /dev/null --run-time 12000000 --verbose 10 &
pid=$!

usleep 100000
pci -w 9040 80004a01
usleep 10000000
pci -w 9040 80000201

echo "Waiting grabber to finish"
wait $pid