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