Search found 19 matches

by gost.404
Sun Sep 01, 2019 2:00 pm
Forum: ESP-IDF
Topic: ULP version error building IDF
Replies: 2
Views: 3186

Re: ULP version error building IDF

OK, thanks. I already tried to build ignoring this warning but it failed. Now, when I try one more time it works, maybe because I rebuilt a project instead of just building.
by gost.404
Thu Aug 29, 2019 6:22 pm
Forum: ESP-IDF
Topic: ULP version error building IDF
Replies: 2
Views: 3186

ULP version error building IDF

Hi everyone! I faced similar problem, but I have installed the latest toolchain (make version), ESP-IDF (aa087667d) and ULP toolchain (2.28.51-esp-20190801). Toolchain version: esp32-2019r1 Compiler version: 8.2.0 ... ULP assembler version: 2.28.51-esp-20190801 WARNING: ULP assembler version 2.28.51...
by gost.404
Tue Jun 25, 2019 10:46 am
Forum: ESP-IDF
Topic: Lack of understanding UART Pattern post_idle time
Replies: 6
Views: 6144

Re: Lack of understanding UART Pattern post_idle time

OK, I got. In my test, I send next string: "Test\nx\n" For communication with ESP32, I use PC with USB-UART adapter. Test string is sent without interrupts in one message. UART pattern configured in next way: uart_enable_pattern_det_intr(UART_PORT_NUM, '\n', 1, 10000, 10, 300); I would guess the idl...
by gost.404
Mon Jun 24, 2019 1:01 pm
Forum: ESP-IDF
Topic: Lack of understanding UART Pattern post_idle time
Replies: 6
Views: 6144

Re: Lack of understanding UART Pattern post_idle time

Sorry, I don't understand the question.
by gost.404
Fri Jun 21, 2019 10:04 am
Forum: ESP-IDF
Topic: Lack of understanding UART Pattern post_idle time
Replies: 6
Views: 6144

Lack of understanding UART Pattern post_idle time

Hi everyone. I have a confusing situation: I'm trying to set up UART Pattern interrupt but the observed result is different than I expect. I configure UART to 921600 baud rate 8N1. From the documentation I read next: post_idle: idle time after the last pattern character, 24bit value, unit is APB (80...
by gost.404
Wed Oct 10, 2018 1:42 pm
Forum: ESP-IDF
Topic: Pre- and Post-builds events
Replies: 8
Views: 9393

Re: Pre- and Post-builds events

Thanks for your advices!
I solve this using Makefile.projbuild for component to add particular CPPFLAGS.
by gost.404
Fri Oct 05, 2018 1:59 pm
Forum: ESP-IDF
Topic: esp32 http server
Replies: 1
Views: 5932

Re: esp32 http server

Hi,
I had same issue and in my case this was due to the fact that I configure HTTP server max_open_sockets parameter = 12 while I had only 10 sockets in system
by gost.404
Wed Sep 26, 2018 8:47 am
Forum: ESP-IDF
Topic: Pre- and Post-builds events
Replies: 8
Views: 9393

Re: Pre- and Post-builds events

About your example: maybe I misunderstood it but I don't generate version manual I use autorevision for this and it generate h-file with set of defines based on git repo information. Also this h-file can be used in many places inside the program. About post-build scripts: in another project I use it...
by gost.404
Tue Sep 25, 2018 2:58 pm
Forum: ESP-IDF
Topic: Pre- and Post-builds events
Replies: 8
Views: 9393

Re: Pre- and Post-builds events

I need this events for targets that change firmware (i.e. 'all', 'menuconfig', 'defconfig', 'app', etc) and only in case when some files was changed. If speak about my current target - I want add some kind of automatic generation of software version and use it inside in project. In another my projec...
by gost.404
Tue Sep 25, 2018 11:31 am
Forum: ESP-IDF
Topic: Pre- and Post-builds events
Replies: 8
Views: 9393

Re: Pre- and Post-builds events

Could you give some example?

Some details about my question:
I have two shell-scripts prebuild.sh and postbuild.sh.
Expected execution order: prebuild.sh -> main build -> postbuild.sh