Page 1 of 1
dual core programming
Posted: Mon Feb 27, 2023 12:28 pm
by aminElmi
is there a way in arduino IDE or other IDEs that you run two different tasks with two cores of esp32 but set each core frequency differently for example core 0 is performing its task with 10 Mhz frequency and core1 is doing its task with 80Mhz?
Re: dual core programming
Posted: Tue Feb 28, 2023 1:14 am
by ESP_Sprite
No, sorry, that kind of setup is physically impossible on current ESP chips as the two cores (and the main memory, for that matter) are in the same clock domain.
Re: dual core programming
Posted: Mon Mar 13, 2023 5:20 pm
by noweare
You can have two tasks that run at different frequencies on the two different cores. For example two timer tasks.
I am assuming you are not talking about clocking the two cores at different frequencies.