Hi All,
I have configured systick timer to generate an interrupt every one millisecond,but when I am in the below function with readPbs()==8 the interrupt is not getting generated even though the NVIC_ST_CURRENT value changes.Could anyone suggest why is this happening in this manner and what can I do so that the interrupt gets generated as per timer even if waiting on an infinite loop?
void uncooperative()
{
while(true)
{
while (readPbs() == 8)
{
}
yield();
}
}
Regards,
Deepu Philip