This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

serious bug how is it fixed

void DelayUSec (uint32_t Time)
{ Delay_Done = 0;
while(!Delay_Done);
}

void Handler (void)
{ if (Stat & 0x01)
{ if (!Delay_Done)
Delay_Done = 1;
}

}

it never come out of my loop

Parents Reply Children