Search found 177 matches

by esp-at
Mon Jan 15, 2024 12:24 pm
Forum: ESP-AT
Topic: ESP-AT: CMake error: Does not match the generator used previously: Ninja
Replies: 1
Views: 13334

Re: ESP-AT: CMake error: Does not match the generator used previously: Ninja

could you please provide more details. have you followed the guide: https://docs.espressif.com/projects/esp ... le_it.html

If this can not fix your issue, please provide all the logs and steps you did.
by esp-at
Mon Jan 15, 2024 12:22 pm
Forum: ESP-AT
Topic: ESP-AT usage examples
Replies: 2
Views: 11001

Re: ESP-AT usage examples

1. I understand that I can install only the: factory_MINI-1.bin And this is instead of installing all the other binaries. I am right? > you can choose different firmwares according to your module/chip. ESP-AT has released firmwares for ESP32-C6, ESP32-C3, ESP32-C2, ESP32, and ESP8266. > You can comp...
by esp-at
Mon Jan 15, 2024 11:54 am
Forum: ESP-AT 中文讨论版
Topic: 如何寫入bootloader.bin 與 pattiion.bin
Replies: 1
Views: 12680

Re: 如何寫入bootloader.bin 與 pattiion.bin

不支持修改 bootloader.bin 和 partition.bin。因为这是非常危险的操作,一旦在写入过程中掉线,由于未完全写入,设备可能会变砖。
by esp-at
Tue Dec 05, 2023 1:13 pm
Forum: ESP-AT
Topic: Creating a Custom Partition for ESP-AT
Replies: 4
Views: 125836

Re: Creating a Custom Partition for ESP-AT

Hello drowsell, If you would like to save some data to flash, you could use AT+SYSMFG command to make it: https://docs.espressif.com/projects/esp-at/en/latest/esp32c3/AT_Command_Set/Basic_AT_Commands.html#cmd-sysmfg For example, you want to save "hello world", you can send AT+SYSMFG=2,"factory_param...
by esp-at
Tue Dec 05, 2023 12:58 pm
Forum: ESP-AT
Topic: Log port pins canot be chaged
Replies: 1
Views: 20236

Re: Log port pins canot be chaged

Hi mateuszfio, Many thanks for your report! you are right. The document is outdated due to ESP-IDF version upgrade. The right way to modify the pins of the log port as following: - ./build.py menuconfig -> Component config -> ESP System Settings -> Channel for console output -> Custom UART - ./build...
by esp-at
Tue Dec 05, 2023 12:50 pm
Forum: ESP-AT
Topic: MQTT Error Code: AT_MQTT_PUBLISH_LENGTH_VALUE_IS_WRONG
Replies: 1
Views: 23920

Re: MQTT Error Code: AT_MQTT_PUBLISH_LENGTH_VALUE_IS_WRONG

Hello yukselenis,
From a code perspective, you'll only receive this MQTT error code if you send the AT+MQTTPUBRAW command with a data_len parameter less than or equal to 0.

If the issue persists, please provide logs from the AT logg port and AT command port. Thank you.

~
by esp-at
Fri Nov 17, 2023 3:14 am
Forum: ESP-AT
Topic: Missing "+BTDATA:" message end (terminating / CR LF) bytes.
Replies: 3
Views: 33686

Re: Missing "+BTDATA:" message end (terminating / CR LF) bytes.

this issue should be fixed after: https://github.com/espressif/esp-at/com ... c6738a24b1
could you please have a try.
by esp-at
Tue Nov 07, 2023 2:19 am
Forum: ESP-AT
Topic: Missing "+BTDATA:" message end (terminating / CR LF) bytes.
Replies: 3
Views: 33686

Re: Missing "+BTDATA:" message end (terminating / CR LF) bytes.

thanks for your report. you are right, the terminating bytes (0x0D 0x0A) should always appear the end of "+BTDATA", it shouldn't be skipped. will fix it within next two weeeks.