So we had another problem. We were wondering how to delay tasks in RobotC without using wait1msec function.
I want to do the following;
startTask(drive);
startTask(lift);
and then wait for these tasks to finish
and then start this code;
startTask(lift);
startTask(claw);
The problem is that all tasks run at the same time.
Any help is appreciated.