mirror of
https://git.kernel.org/pub/scm/bluetooth/bluez.git
synced 2024-11-25 05:04:18 +08:00
21 lines
337 B
Bash
Executable File
21 lines
337 B
Bash
Executable File
#!/bin/sh
|
|
|
|
SOX=`which sox`
|
|
HSTEST=`which hstest`
|
|
|
|
if [ -z "$HSTEST" ]
|
|
then
|
|
HSTEST="./hstest"
|
|
fi
|
|
|
|
if [ -z "$1" ]
|
|
then
|
|
echo -e "Usage:\n\thsmicro <bdaddr> [channel]"
|
|
exit
|
|
fi
|
|
|
|
BDADDR=$1
|
|
CHANNEL=$2
|
|
|
|
$HSTEST record - $BDADDR $CHANNEL | $SOX -t raw -r 8000 -c 1 -s -w - -t ossdsp -r 44100 -c 2 -s -w /dev/dsp polyphase vol 5.0 2> /dev/null
|