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

function pci {
    PCILIB_PATH="../../"
    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