Search found 133 matches

by esp-at
Mon Apr 01, 2024 9:16 am
Forum: ESP-AT
Topic: ESP32-C3-WROOM-02 AT FIRMWARE +IPD WRONG DATA
Replies: 1
Views: 1253

Re: ESP32-C3-WROOM-02 AT FIRMWARE +IPD WRONG DATA

could you please pull the latest master code, and enable the logs, see what happened~ You can enable the logs by the following steps: python build.py menuconfig -> Component config -> Log output -> Default log verbosity -> Info python build.py menuconfig -> Component config -> AT -> Enable ESP-AT De...
by esp-at
Mon Apr 01, 2024 9:07 am
Forum: ESP-AT
Topic: Require Wifi code for soft AP using AT Command
Replies: 3
Views: 1667

Re: Require Wifi code for soft AP using AT Command

you can refer to https://docs.espressif.com/projects/esp ... onnections.

Once received data, AT will prompt "+IPD,<link_id>,<len>:<data>"
by esp-at
Mon Apr 01, 2024 9:04 am
Forum: ESP-AT
Topic: ESP32 OTA using External modem Internet Connectivity, HTTP.h and Update.h Library.
Replies: 1
Views: 1205

Re: ESP32 OTA using External modem Internet Connectivity, HTTP.h and Update.h Library.

current esp-at firmware doesn't support AT+PPPSTART command, i would like to suggest you seek help from the firmware provider.
by esp-at
Mon Apr 01, 2024 8:47 am
Forum: ESP-AT
Topic: ESP-WROOM-02 Link Error
Replies: 2
Views: 1454

Re: ESP-WROOM-02 Link Error

May I ask if this is your new project? We suggest that you choose ESP32-C2 instead of ESP8266, which has more RAM and higher support priority. From your question alone, it may be related to the network or insufficient RAM resources. You may need to open the debug log while wireshark captures the spe...
by esp-at
Mon Apr 01, 2024 8:27 am
Forum: ESP-AT
Topic: Downloading binary files with AT+HTTPCGET
Replies: 1
Views: 1539

Re: Downloading binary files with AT+HTTPCGET

i think AT+HTTPCGET supports to download binary files. Could you please provide the reproduce steps, thanks.

~
by esp-at
Mon Apr 01, 2024 8:21 am
Forum: ESP-AT 中文讨论版
Topic: Esp32c3修改AT管脚失败
Replies: 1
Views: 1641

Re: Esp32c3修改AT管脚失败

我用你提供的附件 factory_param_data.csv,是可以正常编译的。
您再 double check 一下文件是否被正确保存了,步骤是否正确哈。还有问题的话,麻烦提供一下完整的日志,最好提供一下复现代码。
您也可以在 build.py 里添加一些打印,辅助看看哪里出问题了:https://github.com/espressif/esp-at/blo ... ld.py#L275
by esp-at
Mon Apr 01, 2024 8:10 am
Forum: ESP-AT 中文讨论版
Topic: ESP32 WROOM UE GPIO9 and GPIO10 setting UART1
Replies: 1
Views: 1582

Re: ESP32 WROOM UE GPIO9 and GPIO10 setting UART1

ESP 设备支持 GPIO 交互矩阵,可以将任意一个没有被占用的 GPIO 用作 UART 的管脚。您没有必要一定要选用 GPIO10 & GPIO9 作为 UART 的管脚。 1. 请参考 ESP32 技术参考手册:https://www.espressif.com/sites/default/files/documentation/esp32_technical_reference_manual_cn.pdf 2. 具体用法参考 esp-idf 下的 esp-idf/examples/peripherals/uart/uart_events 示例。 3. 也可以参考:https://git...
by esp-at
Mon Apr 01, 2024 7:59 am
Forum: ESP-AT 中文讨论版
Topic: ESP32-WROOM-32UE 建立的socket 保活时间不好用
Replies: 1
Views: 1113

Re: ESP32-WROOM-32UE 建立的socket 保活时间不好用

keep-alive 是在和服务器交互时,客户端发送 keep-alive 包,服务器没有响应时才会关闭。你说的关闭,需要进一步抓包或者对比验证 确认是客户端发送的关闭还是服务器发送的关闭。
从以为经验看,服务器为了防止 DDOS 攻击,通常会主动关闭那些没有数据交互的连接。

~