| | Re: compiling problem Rob Antonishen
| | | You are missing semicolons after the: Wait(turn_time) lines (both) And a code suggestion, instead of: task drive() { while(true) { OnFwd(OUT_A); } } make it: task drive() { OnFwd(OUT_A); while(true) { } } as the motor stays OnFwd until turned off. (...) (19 years ago, 21-Oct-05, to lugnet.robotics.rcx.nqc)
| | | | | | | | Re: compiling problem Bennett Lovelady
| | | | | thanks for the advice rob, it compiled successfully (19 years ago, 21-Oct-05, to lugnet.robotics.rcx.nqc)
| | | | | | |