close Warning: Can't use blame annotator:
svn blame failed on trunk/tools/scripts/dualshock3_usb.sh: 28 - Can't close file '/tmp/svn-zjGd0C': No space left on device

source: flair-bin/trunk/tools/scripts/dualshock3_usb.sh@ 82

Last change on this file since 82 was 82, checked in by Sanahuja Guillaume, 5 years ago

support for multiple ds3 in usb

  • Property svn:executable set to *
File size: 366 bytes
RevLine 
1#! /bin/bash
2ARCH_DIR=$(uname -m)
3
4# $1 is the drone ip
5if [ "$#" -gt 2 ] ; then
6 echo "Usage: $0 drone_ip_address (drone_port, default 20000)"
7 exit 1
8fi
9
10# use default port
11PORT=${2}
12if [ "$#" -eq 1 ] ; then
13 PORT="20000"
14fi
15
16$FLAIR_ROOT/flair-bin/tools/scripts/dualshock3.sh -a ${1}:$PORT -c usb -t 100 -x ${FLAIR_ROOT}/flair-bin/tools/scripts/dualshock3.xml
17
Note: See TracBrowser for help on using the repository browser.