Search found 1 match

by dmitry.m7
Thu Aug 15, 2024 10:56 am
Forum: ESP-AT
Topic: Call AT command from self-defined AT Command
Replies: 0
Views: 1596

Call AT command from self-defined AT Command

Hi! How can I call other AT command from self-defined AT command? For, example at_custom_cmd.c static uint8_t at_test_cmd_test(uint8_t *cmd_name) { uint8_t buffer[64] = {0}; snprintf((char *)buffer, 64, "test command: <AT%s=?> is executed\r\n", cmd_name); esp_at_port_write_data(buffer, strlen((char ...