I tried to write a simple program today. I get the following error on the pendant. (Invalid application: check program parameters in call() or spawn instructions. )
I copied the program from the manual. I named it robb.
In robb is the following:
begin
for nPos = -90 to 90 step -5
jDest.j3 = nPos
movej(jDest,flange,mDesc)
waitEndMove()
endFor
end
The parameters are dimensioned as follows:
jDest-Element-joint
mDesc-Element-mdesc
and the local...
nPos-Collection-num
The start file contains the following:
begin
taskCreate "robb", 100, robb()
end
After I try to load it in my application manager, I get the following on the VAL3 Studio screen:
TakeFeature "207". Status: "ContainerNotFound"
I tried to make an init() file and add NPos =0 but I cannot seem to find it in the same folder as robb and I get the same results.
The controller is the CS8C. I am using VAL3 ver 7.2.1 to generate and send the files to the controller and the controller has ver.6.5.
What am I doing wrong here?
Thank you.