After updating RoboDK and it's API to 5.8, when I generate the program for a KUKA robot the base seems to have been replaced with another line:
How do I revert it back to use the original method of creating the base before the update?
Code:
; ---- Setting reference (Base) ----
; BASE_DATA[1] = {FRAME: X -5352.670,Y 1833.240,Z 1250.080,A -90.198,B 0.404,C 0.073}
BAS(#ex_BASE,1)
; --------------------------
How do I revert it back to use the original method of creating the base before the update?
Code:
; ---- Setting reference (Base) ----
; Using external axes
; $BASE=EK(EX_AX_DATA[1].ROOT,EX_AX_DATA[1].EX_KIN,EX_AX_DATA[1].OFFSET)
; $ACT_EX_AX= 1
$BASE = {FRAME: X -5352.670,Y 1833.240,Z 1250.080,A -90.198,B 0.404,C 0.073}
; --------------------------