From 20e6735b135de1d08c1f08acd98f4ca22d264f9b Mon Sep 17 00:00:00 2001 From: Rudy Hardeman Date: Fri, 26 May 2017 14:16:15 +0200 Subject: [PATCH 1/4] fixed play script --- play.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) mode change 100644 => 100755 play.sh diff --git a/play.sh b/play.sh old mode 100644 new mode 100755 index ee5807a..b1d622b --- a/play.sh +++ b/play.sh @@ -3,11 +3,11 @@ DIRECTORY=$(dirname $0) . $DIRECTORY/play.conf -CONVERTER="/usr/bin/qemu-arm /opt/MD380Tools/md380-emu" -PLAYER="/opt/Tools/digestplay" -FILE=$(mktmp) +CONVERTER="/usr/bin/qemu-arm ./md380-emu" +PLAYER="./digestplay" +FILE=$(mktemp) -sox $1 -c1 -r8000 -b16 --encoding signed-integer -L $FILE.raw +sox $1 -c1 -r8000 -b16 --encoding signed-integer -L --norm=-25 $FILE.raw $CONVERTER -e -i $FILE.raw -o /dev/stdout | \ $PLAYER \ --server-address $SERVER \ From 2b1ad05e137aeac6f76c3b3e529a9742d1b53908 Mon Sep 17 00:00:00 2001 From: Rudy Hardeman Date: Fri, 26 May 2017 14:17:31 +0200 Subject: [PATCH 2/4] Moved config around --- .gitignore | 2 ++ play.conf => play.sample.conf | 0 2 files changed, 2 insertions(+) create mode 100644 .gitignore rename play.conf => play.sample.conf (100%) diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ef929d9 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +play.conf +md380-emu diff --git a/play.conf b/play.sample.conf similarity index 100% rename from play.conf rename to play.sample.conf From 9a909b1f12a069fcd8b30a13c2ecdcbfe793c38e Mon Sep 17 00:00:00 2001 From: Rudy Hardeman Date: Fri, 26 May 2017 14:19:11 +0200 Subject: [PATCH 3/4] Moved tool paths to config --- play.sample.conf | 6 ++++-- play.sh | 2 -- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/play.sample.conf b/play.sample.conf index 5a3f9b3..0a5c9a4 100644 --- a/play.sample.conf +++ b/play.sample.conf @@ -1,3 +1,5 @@ -CLIENT=250901 +CONVERTER="/usr/bin/qemu-arm ./md380-emu" +PLAYER="./digestplay" +CLIENT=2049999 PASSWORD=fvyYWXBo -SERVER=master-test.dstar.su +SERVER=213.222.29.197 diff --git a/play.sh b/play.sh index b1d622b..4dcae89 100755 --- a/play.sh +++ b/play.sh @@ -3,8 +3,6 @@ DIRECTORY=$(dirname $0) . $DIRECTORY/play.conf -CONVERTER="/usr/bin/qemu-arm ./md380-emu" -PLAYER="./digestplay" FILE=$(mktemp) sox $1 -c1 -r8000 -b16 --encoding signed-integer -L --norm=-25 $FILE.raw From ec6914f984f142200d747aea085054dc22962b8c Mon Sep 17 00:00:00 2001 From: Rudy Hardeman Date: Fri, 26 May 2017 14:27:21 +0200 Subject: [PATCH 4/4] Updated gitignore --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index ef929d9..e73a72a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,5 @@ play.conf md380-emu +digestplay +*.o +*.d