| | Stack Overflow
|
| Hi everyone: I'm trying to download a rather large chunk of code to the HandyBoard, and I'm having a problem when I exceed a certain number of instructions in a procedure I'm running. When I try to download the code, I get the error "yacc stack (...) (26 years ago, 23-Jan-99, to lugnet.robotics.handyboard)
| | | | Re: Stack Overflow
|
| (...) code: please send it to me privately and I'll see what I can do. PS: What kind of hardware/software platform are you on? "Yacc" is typically a Unix program that I thought had nothing to do with IC. (And yes, the real Unix "yacc" can stack (...) (26 years ago, 24-Jan-99, to lugnet.robotics.handyboard)
| | | | Re: Stack Overflow
|
| (...) If your code looks something like this... if (i == 1) do001(); else if (i == 2) do002(); else if (i == 3) do003(); else . . . if (i == 100) do100(); ...then try changing it to this: /* Not really a loop, just so we can break */ for (;;) { if (...) (26 years ago, 24-Jan-99, to lugnet.robotics.handyboard)
| |