Hi
I'm trying to send fixed AT commands to the modem using a code based on this code from Rallare: https://github.com/Rallare/fw-nrfconnect-nrf/tree/nrf9160_samples/samples/nrf9160/simple_at
#include <net/socket.h> #include <stdio.h> #include <string.h> #include <uart.h> #include <zephyr.h> const char *at_commands[] = { "AT+CGMM", /* Add more here if needed */ }; void app_socket_start(void) { printk("Starting simple_at\n\r"); int at_socket_fd = socket(AF_LTE, 0, NPROTO_AT); printk("Starting simple AT socket application\n\r"); if (at_socket_fd < 0) { printk("Socket err: %d, errno: %d\r\n", at_socket_fd, errno); } for (int i = 0; i < ARRAY_SIZE(at_commands); i++) { int bytes_written = send(at_socket_fd, at_commands[i], strlen(at_commands[i]), 0); if (bytes_written > 0) { int r_bytes = blocking_recv(at_socket_fd, recv_buf, sizeof(recv_buf), MSG_DONTWAIT); if (r_bytes > 0) { printk("%s", recv_buf); } } } printk("Closing socket\n\r"); (void)close(at_socket_fd); } int main(void) { app_socket_start(); while (1) { ; } }
The problem is that the modem need to register on the network first, before giving any feedback on the AT command. When no network is available, the response is delayed until network timeout (~10s of minutes).
Is there another way to send AT commands to the modem for quicker response?