mirror of
https://github.com/romanz/amodem.git
synced 2026-04-17 11:45:58 +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
|