Search found 8 matches

by HiperDoo
Wed Aug 07, 2024 3:32 pm
Forum: ESP-IDF
Topic: Debug App on Linux Host
Replies: 5
Views: 908

Re: Debug App on Linux Host

That is exactly my problem, it is not working, I guess it is a different procedure in this case, but I really do not know how I could make it work and I cannot find absolutely any information regarding this problem.
by HiperDoo
Tue Aug 06, 2024 3:38 pm
Forum: ESP-IDF
Topic: Debug App on Linux Host
Replies: 5
Views: 908

Re: Debug App on Linux Host

Hello M4L4SS1S3. I am not talking about debugging the physical device (ESP32), in my post I mention that I have difficult debugging the application in the host machine (here there is no physical ESP32). So the permissions of udev are irrelevant in this post. Important to read: https://docs.espressif...
by HiperDoo
Tue Aug 06, 2024 12:41 am
Forum: ESP-IDF
Topic: Debug App on Linux Host
Replies: 5
Views: 908

Debug App on Linux Host

Good, I am getting more and more in my platform transition to ESP-IDF to take advantage of those unique characteristics that only this framework offers (from the Linux side). Recently I stop with https://docs.espressif.com/projects/esp-idf/en/stable/esp32/api-guides/host-apps.html which seemed very ...
by HiperDoo
Mon Apr 24, 2023 10:55 pm
Forum: ESP32 Arduino
Topic: Core 0 is Slower
Replies: 7
Views: 4424

Re: Core 0 is Slower

Any idea what could be going on or is it a really complex issue?
by HiperDoo
Sun Apr 16, 2023 7:23 pm
Forum: ESP32 Arduino
Topic: Core 0 is Slower
Replies: 7
Views: 4424

Re: Core 0 is Slower

I don't know if setup() and loop() can run on another Core, but in my case it always runs on Core 0.

And I don't think adding delays to it will make Core 0 run any faster. What I want is to find out why Core 0 is not as fast as Core 1.
by HiperDoo
Sat Apr 15, 2023 9:01 pm
Forum: ESP32 Arduino
Topic: Core 0 is Slower
Replies: 7
Views: 4424

Re: Core 0 is Slower

In my case, setup() and loop() use Core 1.

And yes, that is my intention, to use all the power and time of Core 0 to verify that there is nothing running behind the scenes.

Using delays or deleting the task has nothing to do with what I'm trying to do.
by HiperDoo
Sat Apr 15, 2023 4:02 am
Forum: ESP32 Arduino
Topic: Core 0 is Slower
Replies: 7
Views: 4424

Re: Core 0 is Slower

Interesting, I didn't think of that possibility.

If so, how can I disable these services?

At no time will I use WiFi or Bluetooth in this project in case you were wondering.
by HiperDoo
Fri Apr 14, 2023 9:43 pm
Forum: ESP32 Arduino
Topic: Core 0 is Slower
Replies: 7
Views: 4424

Core 0 is Slower

Good afternoon community... I have set myself an ambitious project in relation to VGA and Esp32 (using a library of course, maybe you know it), but using both Esp32 Cores in their true and maximum computing capacity. Unfortunately FreeRTOS is a big obstacle to get to such a point, I can tolerate the...