mirror of
https://github.com/romanz/amodem.git
synced 2026-03-17 07:05:59 +08:00
8 lines
108 B
Bash
Executable File
8 lines
108 B
Bash
Executable File
#!/bin/bash
|
|
killall -q aplay arecord
|
|
./calib.py send &
|
|
SENDER_PID=$!
|
|
./calib.py recv
|
|
|
|
kill -INT $SENDER_PID
|