blob: c698bafdd5ec4084b1f4eb276672d6c1fc62d3fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#!/bin/sh
# export direct_bt_debug=hci.event,mgmt.event,gatt.data
#
# ../scripts/run-dbt_scanner00.sh -wait -mac C0:26:DA:01:DA:B1 2>&1 | tee ~/scanner-h01-dbt00.log
#
if [ ! -e bin/dbt_scanner00 -o ! -e lib/libdirect_bt.so ] ; then
echo run from dist directory
exit 1
fi
# hciconfig hci0 reset
ulimit -c unlimited
# run as root 'dpkg-reconfigure locales' enable 'en_US.UTF-8'
# perhaps run as root 'update-locale LC_MEASUREMENT=en_US.UTF-8 LC_ALL=en_US.UTF-8 LANG=en_US.UTF-8'
export LC_MEASUREMENT=en_US.UTF-8
export LC_ALL=en_US.UTF-8
export LANG=en_US.UTF-8
echo COMMANDLINE $0 $*
echo direct_bt_debug $direct_bt_debug
echo direct_bt_verbose $direct_bt_verbose
#LD_LIBRARY_PATH=`pwd`/lib strace bin/dbt_scanner00 $*
LD_LIBRARY_PATH=`pwd`/lib bin/dbt_scanner00 $*
|