/**************************************************************************** ** ** ** Name: user_api_decode_data() ** ** ** ** Description: Parses the message received from the user application ** ** (mainly AT commands) and fills the user data structure. ** ** Returns an AT syntax error code to the user application ** ** layer when the AT command failed to be decoded. ** ** ** ** Inputs: length: Number of bytes to decode ** ** Others: _user_api_recv_buffer ** ** ** ** Outputs: Return: The number of AT commands succeessfully ** ** decoded ** ** Others: _user_api_send_buffer, _user_data ** ** ** ***************************************************************************/ int user_api_decode_data(int length) { LOG_FUNC_IN; /* Parse the AT command line */ LOG_TRACE(INFO, "USR-API - Decode user data: %s", _user_api_recv_buffer); _user_data.n_cmd = at_command_decode(_user_api_recv_buffer, length, _user_data.cmd); if (_user_data.n_cmd > 0) { /* AT command data received from the user application layer * has been successfully decoded */ LOG_TRACE(INFO, "USR-API - %d AT command%s ha%s been successfully " "decoded", _user_data.n_cmd, (_user_data.n_cmd > 1) ? "s" : "", (_user_data.n_cmd > 1) ? "ve" : "s"); } else { int bytes; /* Failed to decode AT command data received from the user * application layer; Return syntax error code message */ LOG_TRACE(ERROR, "USR-API - Syntax error: Failed to decode " "AT command data %s", _user_api_recv_buffer); /* Encode the syntax error code message */ bytes = at_error_encode(_user_api_send_buffer, AT_ERROR_SYNTAX, AT_ERROR_OPERATION_NOT_SUPPORTED); /* Send the syntax error code message */ (void) _user_api_send_data(bytes); } LOG_FUNC_RETURN (_user_data.n_cmd); }
int main() { const char * sample_at_commands[] = { "AT+CGSN\r", "AT+CGSN=?\r", "AT+CGMI\r", "AT+CGMI=?\r", "AT+CGMM\r", "AT+CGMM=?\r", "AT+CIMI\r", "AT+CIMI=?\r", "AT+CFUN=1,1\r", "AT+CFUN=2\r", "AT+CFUN?\r", "AT+CFUN=?\r", "AT+CPIN=1234\r", "AT+CPIN=1234,4321\r", "AT+CPIN?\r", "AT+CPIN=?\r", "AT+CSQ\r", "AT+CSQ=?\r", "AT+COPS=1,1,EURECOM\r", "AT+COPS=2,3\r", "AT+COPS=5\r", "AT+COPS?\r", "AT+COPS=?\r", "AT+CGREG=1\r", "AT+CGREG?\r", "AT+CGREG=?\r", "AT+CGDCONT=1\r", "AT+CGDCONT?\r", "AT+CGDCONT=?\r", "AT+CGACT=1\r", "AT+CGACT?\r", "AT+CGACT=?\r", "AT+CGMR\r", "AT+CGMR=?\r", "AT+CESQ\r", "AT+CESQ=?\r", "AT+CMEE=2\r", "AT+CMEE?\r", "AT+CMEE=?\r", "AT+CLCK=SC,2\r", "AT+CLCK=?\r", "AT+CREG=1\r", "AT+CREG?\r", "AT+CREG=?\r", "AT+CEREG=1\r", "AT+CEREG?\r", "AT+CEREG=?\r", "AT+CGATT=1\r", "AT+CGATT?\r", "AT+CGATT=?\r", "AT\r", "null" }; const char * sample_faulty_at_commands[] = { "AT+CGSN=3,4\r", "AT+CGSN=??\r", "AT+CGMI=1,b\r", "AT+CGMI==\r", "AT+CGMM?\r", "AT+CGMM==n\r", "AT+CIMI=4\r", "AT+CIMI=?t\r", "AT+CFUN=n1,1\r", "AT+CFUN??\r", "AT+CFUN=a?\r", "AT+CPIN=1fd4\r", "AT+CPIN=1sd+,432\r", "AT+CPIN?4\r", "AT+CPIN=?,?\r", "AT+CSQ=AT\r", "AT+CSQ=q\r", "AT+COPS=123121123123123123,EURECOMEURECOMEURECOMEURECOM\r", "AT+COPS=2asd3,33ads1\r", "AT+COPS.=5\r", "AT+COPS?/r\\r", "AT+COPS=?\n\r\r", "AT+CGREG=da1243\42r", "AT+CGREG.?\r", "AT+CGREG1=?\r", "AT+CGDCONT=d31\r", "AT+CGDCONTxc?\\crca", "AT+CGDCONcTc=c?\r", "AT+CGA12C3T=11\123r", "AT+CGACT';;.,?\r", "AT+CGACT=?]\\;e23\r", "\r\r\r", "AT+COP\r", "null" }; at_command_t at_command; unsigned int at_command_index; //log_init(0x2f); /* Parse valid AT commands */ at_command_index = 0; while (strncmp(sample_at_commands[at_command_index], "null", 4) != 0) { if (at_command_decode(sample_at_commands[at_command_index], strlen(sample_at_commands[at_command_index]), &at_command) > 0) { printf("INFO: Fine, parser interpreted valid command %s\n", sample_at_commands[at_command_index]); } else { printf("ERROR: Parser rejected valid command %s\n", sample_at_commands[at_command_index]); } at_command_index++; } /* Parse invalid AT commands */ at_command_index = 0; while (strncmp(sample_faulty_at_commands[at_command_index], "null", 4) != 0) { if (at_command_decode(sample_faulty_at_commands[at_command_index], strlen(sample_faulty_at_commands[at_command_index]), &at_command) > 0) { printf("ERROR: Parser interpreted invalid command %s\n", sample_faulty_at_commands[at_command_index]); } else { printf("INFO: Fine, parser rejected the command %s\n", sample_faulty_at_commands[at_command_index]); } at_command_index++; } /* * Provide a console to the user */ int bytes_read; size_t input_size = 100; char *input; printf("Note 1: Carriage return will be appended to every command by default\n"); printf("Note 2: Enter 'quit' to exit\n"); printf("AT Command> "); input = (char *)malloc(input_size + 1); bytes_read = getline(&input, &input_size, stdin); while (strncmp(input, "quit", 4) != 0) { if (bytes_read == -1) { puts("Cannot read user input!\n"); } else { input[bytes_read - 1] = '\r'; if (at_command_decode(input, bytes_read, &at_command) > 0) printf("INFO: Parser interpreted command %s\n", input); else printf("ERROR: Parser rejected command %s\n", input); } printf("\nAT Command> "); memset(input, 0x00, input_size); bytes_read = getline(&input, &input_size, stdin); } free(input); printf("Exiting...\n"); return 0; }