mirror of
https://github.com/romanz/amodem.git
synced 2026-02-06 00:36:20 +08:00
8 lines
132 B
Bash
Executable File
8 lines
132 B
Bash
Executable File
#!/bin/bash
|
|
killall -q aplay arecord
|
|
python -m amodem.calib send &
|
|
SENDER_PID=$!
|
|
python -m amodem.calib recv
|
|
|
|
kill -INT $SENDER_PID
|