Search found 2 matches
- Fri Apr 19, 2024 9:26 am
- Forum: ESP-IDF
- Topic: xTaskGetCoreID() outputs trash
- Replies: 1
- Views: 303
Re: xTaskGetCoreID() outputs trash
Hello, everybody! Yes, indeed, as it was suggested the fault was memory-related. The stack allocated to one of the tasks got overflowed during the runtime and, thus, couldn’t be detected either by assert or compiler. Therefore, the solution was to increase the number of bytes allocated for the task ...
- Thu Apr 18, 2024 1:55 pm
- Forum: ESP-IDF
- Topic: xTaskGetCoreID() outputs trash
- Replies: 1
- Views: 303
xTaskGetCoreID() outputs trash
Hello, everybody! When creating 3 tasks: void vReceiveTask(void *pvParameters) void vTransmitTask(void *pvParameters) void vEmulateLoad(void *pvParameters) The last one pinned to Core 0 stops working after two other pinned to Core 1 are created and started running. The piece of code for creating tho...