Search found 71 matches

by dmitrij999
Thu Sep 12, 2024 10:51 pm
Forum: ESP-IDF
Topic: Netif traffic indicator
Replies: 5
Views: 1341

Re: Netif traffic indicator

I made a netif traffic counter for GSM modem, but I needed to pull unstable esp-idf from master. I guess it's needed an example for esp-idf to be able to add the traffic counter to future release. Here are some logs from my GSM modem project which connects to Telegram bot: I (244526) MAIN: VBUS:4913...
by dmitrij999
Thu Sep 05, 2024 7:46 am
Forum: ESP-IDF
Topic: Netif traffic indicator
Replies: 5
Views: 1341

Re: Netif traffic indicator

Thanks for traffic reporting feature! With this, I'll try to implement traffic counters But I cannot find it neither in IDF v5.2.2 nor in IDF v5.3.1. Could you please remind me which IDF version has network traffic reporting? I consider connecting my device thru GSM modem and I'd like to account inc...
by dmitrij999
Wed Aug 07, 2024 11:47 am
Forum: ESP-IDF
Topic: ESP32S3 ESP-IDF v5.2.2 Azure IoTHub support integration
Replies: 2
Views: 1174

Re: ESP32S3 ESP-IDF v5.2.2 Azure IoTHub support integration

Finally I managed to compile my project with Azure
in sample-azure-iot, header files, I wrapped calls defined in them into

Code: Select all

#ifdef __cplusplus
extern "C" {
#endif
...
#ifdef __cplusplus
}
#endif
by dmitrij999
Wed Aug 07, 2024 8:59 am
Forum: ESP-IDF
Topic: RMT transaction on led strip corrupted by WiFi interrupts
Replies: 8
Views: 1845

Re: RMT transaction on led strip corrupted by WiFi interrupts

Do you need to use multiple RMT channels for different LED strips?
As for me, I worked this around by using SPI
by dmitrij999
Wed Aug 07, 2024 8:56 am
Forum: ESP-IDF
Topic: ESP32S3 ESP-IDF v5.2.2 Azure IoTHub support integration
Replies: 2
Views: 1174

Re: ESP32S3 ESP-IDF v5.2.2 Azure IoTHub support integration

For now, I've restructured my Azure components in my project, but build finishes with linking error Components https://disk.yandex.ru/d/2MeNL3onmCBdFA Build log (undefined reference to) /home/dmitrij999/esp/esp-tools/v5.2.2/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/../lib/gcc/xtens...
by dmitrij999
Sat Aug 03, 2024 10:32 am
Forum: ESP-IDF
Topic: ESP32S3 ESP-IDF v5.2.2 Azure IoTHub support integration
Replies: 2
Views: 1174

ESP32S3 ESP-IDF v5.2.2 Azure IoTHub support integration

Hello! I faced with Azure IoTHub integration trouble, trying to integrate it into project based on ESP-IDF v5.2.2. esp-azure from components registry breaks down the project build, and conflicts with usb_host_cdc_acm, therefore I'm trying to integrate the azure-iot-middleware-freertos: https://githu...
by dmitrij999
Sun Apr 28, 2024 1:07 pm
Forum: ESP-IDF
Topic: ESP32+SIM800C=cannot connect to internet
Replies: 1
Views: 2569

Re: ESP32+SIM800C=cannot connect to internet

For now, I need to connect to Internet from ESP32 using SIM800C again, using LilyGO T-Call based on AXP192 PMIC. I use ESP-IDF 5.2.1 and esp-modem v1.1.0 component, and use simple_cmux_client as a base. But all I see that AT commands are working, PDP context is setting up, but connection to *99# est...
by dmitrij999
Wed Feb 22, 2023 7:14 am
Forum: ESP-IDF
Topic: [Solved] Secure boot signature verification failed
Replies: 16
Views: 9908

Re: Secure boot signature verification failed

If you plan to use SecureBoot v2, you need to tell espsecure.py that you use SecureBoot v2 explicitly

Code: Select all

python espsecure.py verify_signature --version 2 ...
As well, it might help you in case of signing images
by dmitrij999
Tue Feb 21, 2023 10:29 pm
Forum: ESP-IDF
Topic: [Solved] Secure boot signature verification failed
Replies: 16
Views: 9908

Re: Secure boot signature verification failed

Which tool you use to verify the image on host?
espsecure.py could help you to verify the image
See here

You might need to reproduce the process using the host encryption key+private signing key
by dmitrij999
Tue Feb 21, 2023 11:25 am
Forum: General Discussion
Topic: File upload using socket succeeds but not with esp_http_client
Replies: 14
Views: 18319

Re: File upload using socket succeeds but not with esp_http_client

Hello everyone! I'm also trying to send large file from LittleFS to server using esp_http_client. Server responds the 400 error code, and "No file part". Server code works, tested with Postman The code for sending using esp_http_client: esp_err_t upload_file_to_server(string fname, string basename, ...