I have planned straight line path with movep using urcap generateScript method. I sent script movep commands for every 1 mm. My algorithm is below.
movep(initialpose,v=0.02,a=0.02,r=0)
movep(middle0pose,v=0.02,a=0.02,r=0.001)
…
…
movep(middleNpose,v=0.02,a=0.02,r=0.001)
movep(finalpose,v=0.02,a=0.02,r=0)
My question is at the final pose sudden stop happening. How can I handle with it?
Note: When I use just 4 movep command for same path, through last point motion it is good and soft. However, I need to do precise motion for my application type. Until this day, I have used servoj and it makes lagging during path. I also thought about speedl and speedj, they are not seem to me good for complex paths.