Unstable and other issues- Printable Version +- RoboDK Forum (//www.sinclairbody.com/forum) +-- Forum: RoboDK (EN) (//www.sinclairbody.com/forum/Forum-RoboDK-EN) + - - -论坛:通用RoboDK问题(//www.sinclairbody.com/forum/Forum-General-questions-about-RoboDK) +--- Thread: Unstable and other issues (/Thread-Unstable-and-other-issues) |
Unstable and other issues-Omoikane-05-23-2020 A few really painful issue for me: 1) The software keeps forgetting license file information every time after restarting the program (not restarting the computer, just the program). So I would loose what I was working on because it won't let me save OR it won't let me input the license code. I had to restart the program, it will be Free (limited), then re-input the license code, and then redo all the work. 2) The program editor also have issue. After generating the program code showing up in the Program Editor, you can only excuse any one command once and it will not response to another command again. For example, go to Help -> About, and a dialog box shows up. And the do the same Help -> About, and nothing happens. And other command won't work either. 3) I was generating program for a KUKA robot. There should be multiple files generated, and only a *.src would show up. What ever was generated wasn't working for the robot. 4) Same thing after I replace the robot in simulation to a NACHi. The generated code looks different, but still it won't work for the robot either. 5) Is there live help available?? RE: Unstable and other issues-Albert-05-25-2020 To help with your issues:
RE: Unstable and other issues-Omoikane-05-26-2020 Hi Albert, On issue 2, disable the editor opening as an embedded windows solve the issue. : ) On issue 4, is there a different processor for AX or FD controller? I am using a FD controller. But in the list of post processors, there is only the NACHi AX FD to choose from. I am following the tutorial and generated this code: ' Program generated by RoboDK v4.2.4 for Nachi MZ07L on 25/05/2020 18:07:35 ' Using nominal kinematics. ' Call program Approach_move: CALLP -01 ' Call program SprayOn(1): CALLP -01 ' Call program Painting: CALLP -01 ' Call program SprayOn(0): CALLP -01 ' Call program Retract_move: CALLP -01 END There is no joint angle, etc. and the controller can't find 01. And the default folder only shows a *.005 file. Any suggestions will be greatly appreciated. RE: Unstable and other issues-Albert-05-27-2020 If you generate a program that contains sub programs you should make sure you call a numbered program. For example CALL 5. And Programs must have a number for Nachi. You should also generate the subprograms as separate files. Another option is to inline all subprograms:
RE: Unstable and other issues-Omoikane-05-31-2020 Thanks Albert. I learned a few more things about program structure and this helps! : ) |