dear all
i am stuck in a mid part of the project... i want to interface at24c08 eeprom with p89v51rd2... please can any one write a workable code for me...
i only want ot send bytes of character and store it there so that i can retrieve the data some time later... please help me... i m in a bad situation... i have tried many other code available on the net but its not working... please help...
an infinite loop after a single interaction might be exactly what you want, of course.
Why make such a complicated infinite loop?
Wouldn't
while (1) ;
or
for (;;) ;
do {} while (0);
be a bit simpler to write - and not involve the #1 spaghetti construct "goto"?