Básicamente, estoy completamente harto de escribir muchísimo texto. Obviamente quiero escribirlo en un archivo, enviarlo a UART U-Boot, luego modificar el archivo e intentarlo de nuevo.
Pero ni Shift+Ctrl+C screen ttyUSB0 115200
funciona correctamente, ni cat file.cmd > ttyUSB0
.
¿Alguien tuvo formas ingeniosas de copiar a UART? No puedo ser el único que intentó hacer algo como esto.
Respuesta1
Bueno, tuve que hacer un pequeño guión para hacer esto, eh, bastante bueno:
cat > slowpipe << 'EOF'
#!/usr/bin/env bash
set -eu
data=$(< /dev/stdin)
hz=$(bc -l <<< "1.0 / $1")
while [ -n "$data" ]; do
printf '%s' "${data:0:1}"
data=${data:1}
sleep $hz
done
# XXX It seems to be imposible to save leading newlines in variables,
# you cant have var=$'\n'$'\n' no mater what you do, only one new line can will
# be saved, IFS won't help, or anything. one way is to use `read`, without
# saving all stdin to variable.
echo
EOF
chmod 755 slowpipe
./slowpipe 42 < rpi.cmd >> /dev/ttyUSB0