I am using KRC4 KR120, 8.3.26 system. My program reads:
Code
&ACCESS RVP
&PARAM TEMPLATE = C:\KRC\Roboter\Template\vorgabe
&PARAM EDITMASK = *
DEF javakuka( )
;FOLD INI;%{PE}
;FOLD BASISTECH INI
GLOBAL INTERRUPT DECL 3 WHEN $STOPMESS==TRUE DO IR_STOPM ( )
INTERRUPT ON 3
BAS (#INITMOV,0 )
;ENDFOLD (BASISTECH INI)
;FOLD USER INI
;Make your modifications here
;ENDFOLD (USER INI)
;ENDFOLD (INI)
$TOOL=TOOL_DATA[6]
$BASE=BASE_DATA[2]
PTP XHOME
PTP {A1 -90}
...
Display More
The robot reports "Too 1 overload" error when running PTP {A1 -90}. There must be something wrong: 1) the program using Tool 6 instead Tool 1, why the system tells that Tool 1 causes overload? 2) The actual tool 6 is about 24 kg, not likely causes overload problem.
I suppose the problem is BAS (#INITMOV,0 ) in header, does it make the robot always checking Tool 1 for overloading? I have tried add BAS (#TOOL, 6 ) after PTP XHOME, but the error stays the same. I guess the solution is modifying BAS (#INITMOV,0 ) , or the system settings related to #INITMOV?