#!/bin/sh
#
stty -F /dev/ttyAMA1 -echo
for i in $(seq 1 100); do
    printf '\x7f' > /dev/ttyAMA1
    sleep 0.5
done
