Davy P.

Results 65 comments of Davy P.

I think I have been to fast. I will check again this [documentation](https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-guides/performance/ram-usage.html).

I try to impliment [uxTaskGetSystemState](https://docs.espressif.com/projects/esp-idf/en/latest/esp32/api-reference/system/freertos.html#_CPPv420uxTaskGetSystemStatePC12TaskStatus_tK11UBaseType_tPC8uint32_t) First I have added #define CONFIG_FREERTOS_USE_TRACE_FACILITY 1 is sdkconfig.h And now I am stuck on a conversion from 'void*' to 'TaskStatus_t* ``` TaskStatus_t* pxTaskStatusArray; pxTaskStatusArray...

Let's try something easier ``` in setup -> vAFunction(); void vAFunction() { TaskHandle_t xHandle; TaskStatus_t xTaskDetails; //Obtain the handle of a task from its name. xHandle = xTaskGetHandle("URLTask"); //Check the...

Found a easy way to get more internal memory free ``` const int limit = 500; heap_caps_malloc_extmem_enable(limit);//Use more PSRAM ```

> [ 50715][E][Wire.cpp:319] beginTransmission(): could not acquire lock Did you initialize the wire correctly. I think something is wrong camera.

Oh. I see now. I don't am exprenced engough with M5 stack. I can only point you in a direction what I think it could be it. Did you check...

Are you using this library? > /* > PubSubClient.h - A simple client for MQTT. > Nick O'Leary > http://knolleary.net > */ Then check these parameters in the MQTT library...

I am think that the ESP32-C3 will support other protocols than `WIFI_PROTOCOL_11B` like the old ESP32 and that's limited to 10Mbs, I tested it this weekend to set anything else...

When I read your fault codes again. I see you have a problem with toolchains. On what software are you programming?