Quote:
|
Originally Posted by Kevin Watson
Ugh, I just realized this code will cause the red-light-of-death. Anyone care to venture a guess as to why it won't work? I'll post corrected code tomorrow-ish.
-Kevin
|
I'm not sure, but I don't like that while
Code:
// wait, if necessary, for a free slot on the circular queue
while(EEPROM_Queue_Free_Space() == 0);
Won't that keep looping until the queue is full (which it never will be if it never leaves that loop)?