Page 1 of 1

vTaskList() and others....

Posted: Sat Apr 27, 2024 1:37 am
by themindfactory
This function and others that do task stats seem to be enabled, I found them in a few .h files, and no matter what I do I can not link it in the Arduino IDE.

I have also tried the:

Code: Select all

extern "C" {
  void vTaskGetRunTimeStats(char *);
};
As I assume they are not CPP files... but to no avail... still no go...

Anyone?? :-)

Re: vTaskList() and others....

Posted: Sat Apr 27, 2024 1:51 am
by lbernstone
Enabling system trace requires a significant amount of memory, so it is disabled in arduino-esp32

Re: vTaskList() and others....

Posted: Sat Apr 27, 2024 2:50 am
by themindfactory
hmm thought I saw that enabled too :-)

bummer.... trying to see how much horsepower each task is using, to make sure I am not running out!

R.