There shouldn't be a problem. Both cores are bust masters and can read at any point in time from peripheral resources. The one which reads first will get first.
What is always dangerous:
while (x < 1000)
{
x = read_timer(timer0);
}
If you poll with full CPU speed on a register, even simultaneously with two different cores, then you might see weird system behavior.
Regards,
Bernhard.
There shouldn't be a problem. Both cores are bust masters and can read at any point in time from peripheral resources. The one which reads first will get first.
What is always dangerous:
while (x < 1000)
{
x = read_timer(timer0);
}
If you poll with full CPU speed on a register, even simultaneously with two different cores, then you might see weird system behavior.
Regards,
Bernhard.