I thought the bug was fixed in version 1.0.3, but when I use the reformatting program, the format is completely broken.
Because of that, the robot program that I worked on for 8 hours is completely broken.
Why don't you fix such a critical bug?
K-IDE support forum Find all information about Kawasaki's Integrated Development Environment |
I thought the bug was fixed in version 1.0.3, but when I use the reformatting program, the format is completely broken.
Because of that, the robot program that I worked on for 8 hours is completely broken.
Why don't you fix such a critical bug?
Posts: | 3 |
Date registered | 12.22.2024 |
And When I load a new existing program, OX is changed to lowercase, which causes grammar errors when downloading the program.
Posts: | 3 |
Date registered | 12.22.2024 |
I am sorry to hear about this problem! Please give me detailed information like this:
Christian Quante
Technical Sales
Sales Department
Kawasaki Robotics GmbH
Rheiner Landstrasse 195A • 49078 Osnabrück
Germany
Posts: | 326 |
Date registered | 12.20.2019 |
Zitat von rapesia im Beitrag #1
Because of that, the robot program that I worked on for 8 hours is completely broken
Zitat von cquante im Beitrag Autosave file
a very simple auto-save functionality is added here: BETA / Update 1.1.1.12
Posts: | 52 |
Date registered | 02.08.2021 |
If reformat like this, there will be spaces in all arrays, the robot will not load itself, and string errors will occur.
and version is 1.1.5.0.
Someone else reported the bug before and there was a patch file, but the new versions are causing the bug again. Please remove the reformatting button so that it is not pressed accidentally.
Posts: | 3 |
Date registered | 12.22.2024 |
Thank you for sharing the information!
I'm not a friend of removing functionality that does not work as expected. I like to fix that function instead. To be honest, I don't use Block Teaching functionality in my programs and therefor I need your help for fixing that.
The last time I got information about formating issues was half a year ago (see -> here <-. I fixed that in August 2024. Of cause the fix is still present in the latest K-IDE (v1.1.5.0 / 1.1.5.1). If it's still not working for you than please help me understanding what to do to get the faulty result!
I inspected the code and found that line:
// Block teaching line
if (_IsPainting || ((_IsStandard || _IsArcWelding || _IsSealing) && IsBlockTeachingLine (line.Trim ())))
return line; // leve the line unformated
// Perform formating from here...
That means, in a painting firmware, there will be no formating and for the standard (handling), arc welding or sealing firmware each line will be inspected. That may be a reason for your issues: if K-IDE cannot identify the firmware, no Block Teaching identification will be done and in fact all lines will be formated. So I suspect you were using a new file without any firmware information, copied you programs in there and edit them. In that case no "_IsXxx" boolean variable is set and the formating will be performed even on the Block Teaching line.
Am I right?
Christian Quante
Technical Sales
Sales Department
Kawasaki Robotics GmbH
Rheiner Landstrasse 195A • 49078 Osnabrück
Germany
Posts: | 326 |
Date registered | 12.20.2019 |
|