I would like how to call other task functions in main(). Does RobotC allow running of 2 or above sub-functions concurrently??
The content of my program is something as below,
task sound()
{
…
}
task test()
{
…
}
task main()
{
call task sound()
call task test()
}
Thanks a lot!!!