Search found 74 matches

by filipESP
Sun Aug 25, 2024 9:01 am
Forum: IDEs for ESP-IDF
Topic: The color palette
Replies: 9
Views: 5659

Re: The color palette

Is any update with solution? Starting Espresiff project make code style (dark theme) like in the Visual Studio Code default style. :cry:
by filipESP
Mon Jul 15, 2024 4:28 pm
Forum: ESP-IDF
Topic: Eclipse with Espresiff toolchain
Replies: 2
Views: 1248

Re: Eclipse with Espresiff toolchain

Eclipse restart doesn't help. If I open file from outside the project, colors of the code are correct. Theme works on the older eclipse veriosn eg 2022/21
by filipESP
Sat Jul 13, 2024 8:38 am
Forum: ESP-IDF
Topic: Eclipse with Espresiff toolchain
Replies: 2
Views: 1248

Eclipse with Espresiff toolchain

I use eclipse 2024 03/06. After I installed toolchain, the dark classic theme has changed colors and I even can't change it to the 'Color theme downloaded from eclipse site'.

esp-idf-5.2.2.
by filipESP
Wed Jun 01, 2022 8:50 pm
Forum: ESP-IDF
Topic: OTA update - Checksum failed. Calculated 0x2b read 0x71
Replies: 2
Views: 2892

Re: OTA update - Checksum failed. Calculated 0x2b read 0x71

Issue resolved.
I didn't declare buffer for IV vector as static and the buffer was clearing every time when I received new package of data.
by filipESP
Wed Jun 01, 2022 10:28 am
Forum: ESP-IDF
Topic: OTA update - Checksum failed. Calculated 0x2b read 0x71
Replies: 2
Views: 2892

Re: OTA update - Checksum failed. Calculated 0x2b read 0x71

I try to read OTA partition by esptool:
python esptool.py -p COM2 -b 460800 read_flash 0x00410000 0x00400000 out.bin
and I compare with original binary file - size is the same but files are different in 16 B every 1024 B, starting at 1008 Byte.
by filipESP
Tue May 31, 2022 3:19 pm
Forum: ESP-IDF
Topic: OTA update - Checksum failed. Calculated 0x2b read 0x71
Replies: 2
Views: 2892

OTA update - Checksum failed. Calculated 0x2b read 0x71

Hi, My OTA image is encrypted by AES 128 and it'is the same bin file what it's running. Partitions table is: # Name, Type, SubType, Offset, Size, Flags # Note: if you have increased the bootloader size, make sure to update the offsets to avoid overlap nvs, data, nvs, 0x9000, 0x4000, otadata, data, o...
by filipESP
Tue Aug 03, 2021 9:01 am
Forum: ESP-IDF
Topic: UART - ring buffer full, uart_flush_input(uart_port_t uart_num) doesn't clear buffer
Replies: 2
Views: 4810

UART - ring buffer full, uart_flush_input(uart_port_t uart_num) doesn't clear buffer

I use idf v4.4-dev. When I transmit to esp lot of data with high frequency the event UART_BUFFER_FULL appears but uart_flush_input() doesn't clear buffer but returns ESP_OK status. Next event is UART_FIFO_OVF and it apears continously when data is receive. This is my while loop in uart task: while(1...
by filipESP
Mon Jul 05, 2021 1:36 pm
Forum: ESP-IDF
Topic: Wifi is restarting without the reason.
Replies: 0
Views: 1587

Wifi is restarting without the reason.

I have a project, which connects to wifi and sends from time to time data to server. Sometimes esp log this info: I (54056579) wifi:state: run -> init (ce00) I (54056579) wifi:pm stop, total sleep time: 0 us / 909284818 us but I can't guess why it occurs. I try to use esp_wifi_set_ps( WIFI_PS_NONE )...
by filipESP
Fri Dec 11, 2020 10:39 pm
Forum: ESP-IDF
Topic: WiFi AP web page.
Replies: 6
Views: 6291

Re: WiFi AP web page.

I tested the Arduino example from:
https://github.com/espressif/arduino-es ... Portal.ino
and it is working perfectly.
How to start the DNS server in C, like in this arduino code?