mirror of
https://github.com/espressif/esp-idf
synced 2025-03-10 09:39:10 -04:00
Workaround: Automatically pin no-cpu-affinity task to a core when FPU is used FPU status at the moment does not migrate cleanly between cores, so tasks without affinity that happen to migrate across FPUs will run into problems. As a workaround, this modification will automatically pin the task to the current CPU when FPU activity is detected. If anything, it's better than getting all kinds of weird and wonderful FPU corruption issues... See merge request !124