I need send AT commands to my modem (Huawei e171) in a loop. I try this script (file script.txt):
start:
send AT+CSQ
sleep 2
goto start
and run it via minicom -S script.txt but got nothing: empty minicom screen opened.
but script with single command works well:
start:
send AT+CSQ
What I'm doing wrong?
PS: I try this script:
start:
send AT+CSQ
send AT+CSQ
send AT+CSQ
but it gives only one answer from modem instead of three....
