Home › Forums › TinyG › TinyG Support › File not open error
Tagged: File not open error
- This topic has 9 replies, 4 voices, and was last updated 9 years, 2 months ago by cmcgrath5035.
-
AuthorPosts
-
December 12, 2014 at 7:11 am #7152JuKuMember
This happens every time when my machine tries probing. Here is a log of the communications, ==> is what the PC is sending, the rest whet TinyG returns:
…
==> M03
{“r”:{},”f”:[1,0,4,4397]}
==> G0 X295.97177625 Y90.652625
==> G0 X296.373 Y91.052625
{“r”:{},”f”:[1,0,28,108]}
{“sr”:{“vel”:0.09,”stat”:5}}
{“qr”:31,”qi”:1,”qo”:0}
{“r”:{},”f”:[1,0,23,103]}
{“sr”:{“posx”:222.948,”posy”:61.271,”vel”:20.79}}
{“qr”:30,”qi”:1,”qo”:0}
{“sr”:{“posx”:224.672,”posy”:61.965,”vel”:1596.38}}
{“sr”:{“posx”:234.797,”posy”:66.039,”vel”:5101.14}}
{“sr”:{“posx”:254.132,”posy”:73.818,”vel”:6910.25}}
{“sr”:{“posx”:274.636,”posy”:82.068,”vel”:6492.10}}
{“sr”:{“posx”:290.133,”posy”:88.303,”vel”:3469.01}}
{“sr”:{“posx”:295.692,”posy”:90.540,”vel”:488.24}}
{“qr”:31,”qi”:0,”qo”:1}
{“sr”:{“posx”:295.987,”posy”:90.673,”vel”:99.76}}
{“sr”:{“posx”:296.373,”posy”:91.053,”vel”:0.00,”stat”:3}}
{“qr”:32,”qi”:0,”qo”:1}
==> M08
{“r”:{},”f”:[1,0,4,4397]}
==> {“zsn”:0}
{“er”:{“fb”:438.02,”st”:9,”msg”:”File not open”}}Any idea what is going on and how to fix this? Especially, can I work around this, do I need to wait for a solution or go back to some early version?
December 12, 2014 at 8:48 am #7153cmcgrath5035ModeratorThis is just a guess:
Did you hand edit the {“zsn”,0} JSON command into the Gcode file (to turn off the limit switch) ?When the GCode is being sent, I believe tinyG is in text mode.
Try inserting this
$ej = 1 //switch to json mode
{“zsn”,0}
{“ej”,0} //back to textAs I said, a guess on my part, have never actually done this
Or, maybe, just replace you json command
{“zsn”,0}with same command in text mode syntax
$zsn = 0December 12, 2014 at 10:00 am #7154JuKuMember> Did you hand edit the {“zsn”,0} JSON command into the Gcode file (to turn off the limit switch) ?
No, but I wrote the program that is talking to TinyG. I’m not sending a file, my program is talking to TinyG in real time. At this point, it is trying to probe down (in my case, to +Z direction), therefore it is changing the switch settings.
> When the GCode is being sent, I believe tinyG is in text mode.
Doesn’t seem so; at least the responses are in JSON. Anyway, sending the switch command in text mode gives the same error.
The error does not seem to depend on JSON vs text mode.
December 15, 2014 at 7:15 am #7187JuKuMemberI converted the communications to be all JSON. The error stays.
Also, it is not timing dependent; if I pause between commands or give them manually, it still crashes.Alden, what might cause “file not open” error?
December 16, 2014 at 4:34 am #7194chmrMemberHi, although I am not Alden I can try to give more information on the error because I have been tinkering with the code for other reasons.
The file not open error is returned when someone tries to change values in EEPROM while the machine is moving (for EEPROM writes, interrupts have to be disabled for a “long” time which would mess up step pulses etc). The new value is still being set, but not written back to EEPROM, so the old value will be used after you reset the tinyg.
The machining state is correctly set when the machine is moving, and also correctly reset when the movement is finished. The funny thing (aka bug) is that it is also set when M8 (or any other M command) is executed after the movement stops. It is only reset when another movement is started and finished.
Possible workarounds for you:
– ignore the error (should not hurt you if the $zsn value is always under control of your program, but certainly not pretty)
– reset $zsn before executing M8. Your program seems to wait anyway until movement is finished, so you should not get the error any more.December 16, 2014 at 7:41 am #7195JuKuMemberThank you! This was the issue. I was able to re-arrange my code so, that all M commands are followed by a real move.
September 11, 2015 at 2:25 pm #8737jpistorinoMemberWas this issue ever fixed other than by careful rearrangement of the commands?
I am writing something similar to JuKu where I issue commands in realtime to the TinyG. This is for a jog feature.To implement it, I do the following:
1) record the maximum travel velocities of all the axes (XVM, YVM);
2) detect an arrow keydown event;
3) reset the velocity of the axis of move direction to 1/10 of the original;
4) issue a move to maximum travel distance in the desired direction;
5) detect a keyup event;
6) issue a “!%” to cancel the move and clear the buffer;
7) reset the travel velocities (X and Y) to the original values (using XVM, YVM).After issuing the last XVM and YXM commands, I get:
{“er”:{“fb”:438.02,”st”:9,”msg”:”File not open”}}Attached, is a screenshot of my app showing the commands sent and responses received.
I suppose that I could issue dummy move commands between the velocity resets but that seems like a bandaid approach. I also know that I am not using the most recent firmware version.Any ideas on the best way to resolve this?
Thanks,
JamesSeptember 11, 2015 at 6:36 pm #8739cmcgrath5035ModeratorDid you consider implementing step 3 (above) as part as step 4, by issuing a
G1 (move to max distance in desired direction) F(1/10 of the Vmax in that direction) ?
That would avoid EEPRROM writes.
Not clear if you would need to reset the F speed (step 7)after canceling the jog, as long as the next jog set it’s desired speed.September 11, 2015 at 8:08 pm #8740jpistorinoMemberOK. Let me try that.
BTW, if John Lauer monitors this forum, I think this is a better approach than what he is using to jog in Chilipeppr. He issues a series of G91 and G90 commands as long as the key is depressed (the keydown event issues one and, as long and the key is held down, there are are series of keypress events that result in more commands being issued). At least on my machine, that leads to a very stuttering type of movement.
The approach I am trying gives you smooth movement. You detect keydown, ignore all keypress, and detect keyup events. As long as the travel rate is fairly slow, you get smooth movement and control.
September 11, 2015 at 9:59 pm #8741cmcgrath5035ModeratorThe method you propose was used by tgFX, IIRC.
Unfortunately, there were situations where the “key-unpress” and ! command were missed (comms issues), resulting in what you would expect – runaway gantry, oops, bang. -
AuthorPosts
- You must be logged in to reply to this topic.