Search found 177 matches

by esp-at
Fri Nov 03, 2023 12:00 pm
Forum: ESP-AT 中文讨论版
Topic: +ipd数据包最开始的0x0d, 0x0a
Replies: 2
Views: 18422

Re: +ipd数据包最开始的0x0d, 0x0a

对的。输出格式是 \r\n+IPD,<len>:<data>\r\n

AT 文档应该再完善一下,谢谢。
by esp-at
Fri Nov 03, 2023 11:58 am
Forum: ESP-AT 中文讨论版
Topic: ESP32C2 AP 无法被连接
Replies: 1
Views: 17579

Re: ESP32C2 AP 无法被连接

请按照这个模板,提供更多的信息。
https://github.com/espressif/esp-at/iss ... me_bug.yml
by esp-at
Fri Nov 03, 2023 7:12 am
Forum: ESP-AT
Topic: Error when try to set the MAC address of the ESP32 Ethernet
Replies: 9
Views: 33071

Re: Error when try to set the MAC address of the ESP32 Ethernet

and do you have the AT download port logs, does the log have "xx:xx:xx:xx:xx:xx\r\n" output?
by esp-at
Fri Nov 03, 2023 7:10 am
Forum: ESP-AT
Topic: Error when try to set the MAC address of the ESP32 Ethernet
Replies: 9
Views: 33071

Re: Error when try to set the MAC address of the ESP32 Ethernet

could you please provide the AT+GMR, i would like to provide a debug library for you to see what happened.
by esp-at
Fri Nov 03, 2023 7:03 am
Forum: ESP-AT 中文讨论版
Topic: 如何自定义不带+号的AT命令
Replies: 4
Views: 18270

Re: 如何自定义不带+号的AT命令

下面是一个可能的 workaround: 1. MCU 还是通过 UART 发送 "ATSI," 此类不符合通用用法的命令格式 2. 修改从 UART 那边读取到的数据,https://github.com/espressif/esp-at/blob/master/main/interface/uart/at_uart_task.c#L176。 比如将 "ATSI," 开头的字符串替换为 "ATSI=" 3. 这样传递到 AT 内部解析时,AT 内部还是认为是 "ATSI=" 这类命令 tips: 通常不建议这样修改。一方面是:未经过测试,风险无法评估;另外一方面,后续你们维护命令也比较困难,...
by esp-at
Sat Oct 07, 2023 12:05 pm
Forum: ESP-AT
Topic: AT+HTTPCPOST HEAP LIMITATION
Replies: 1
Views: 30565

Re: AT+HTTPCPOST HEAP LIMITATION

you can try to establish tcp/ssl connection by AT+CIPSTART command firstly, and then construct the http get/post packet content on MCU side, and send it to ESP module by AT+CIPSEND/AT+CIPSENDL command. Once MCU received http response from http server, then MCU parses the wanted data from +IPD data.
by esp-at
Sat Oct 07, 2023 11:58 am
Forum: ESP-AT
Topic: Official C parser library for host MCU and ESP-AT WNIC
Replies: 1
Views: 24302

Re: Official C parser library for host MCU and ESP-AT WNIC

Sorry for that. there is no such parsing framework from the official source. And https://github.com/MaJerle/lwesp has already done the most jobs.
by esp-at
Sat Oct 07, 2023 11:43 am
Forum: ESP-AT
Topic: How to set the mDNS instance name
Replies: 3
Views: 44602

Re: How to set the mDNS instance name

instance name is set by mdns_service_add(), and it should be same as the service name. could you please provide more details, such as logs and capture the packets, etc.