Tenga en cuenta, diferentes fabricantes tienen diferentes comandos AT para acceder a las funciones de STK. Y, no todos los dispositivos admiten la ejecución de aplicaciones STK. Hasta ahora he logrado obtener ZTE MF100 de trabajo: Después de la apertura, los siguientes comandos vienen práctico:
AT+ZSTM // select STK app (initialize, lists the available options in return)
AT+ZSELM=1 // select the first main menuentry (you will get the submenu options as return)
AT+ZSELI=1 // select the first submenu entry (you will get some response as well)
AT+ZINPR=2,1234567890 // this is a response, in my case i had to send a phone number. the first parameter means "numeric only", setting this to 0 will allow any characters (from the standard SMS charset)
AT+ZINPR=1,1 // this is a confirmation response (first parameter=1 means yes/no answer, second is the parameter, yes in this case)
AT+ZBK=0 // return to the main menu
Debe abrir el directorio/dev/ttyUSBx no bloqueante, y sondear la entrada de datos, como se el módem no solo responde a sus solicitudes, sino que también envía actualizaciones de estado a su cliente.
nadie tiene ninguna información que pueda ayudar? – Izmoto