Software Reset during auto level
Hi,
I do have a selfmade cartesian printer controlled via a RUMBa board (not the plus version). I updated the firmware from 0.9x to 1.05dev. After auto bed level the printer restarts everytime after the last of three bed level points.
Here I found out, that it might me a memory problem: https://forum.repetier.com/discussion/3385/firmware-stop-reset-under-auto-leveling
Is that the value given by the arduino-software? When compiling and uploading it says "Globale Variablen verwenden 6.936 Bytes (84%) des dynamischen Speichers, 1.256 Bytes für lokale Variablen verbleiben. Das Maximum sind 8.192 Bytes." (meaning 1.256 bytes free for local variables. there is an orange warning that the memory is maybe insufficient).
What may I check? I cannot "Reduce subdivisions" , because I do not find it, obviously because my printer is cartesian style.
best regards,
karl.ranseier
P.S.: edit:
Points for auto level:
P1(50|220) P2(50|50) P3(220|50)
Zprobe offset: (-108|-10)
Points for auto level:
P1(50|220) P2(50|50) P3(220|50)
Zprobe offset: (-108|-10)
Zprobe height: 13.850
Comments
16:25:01.165 : plane: a = -0.0003 b = -0.0003 c = 19.0933
16:25:01.185 : Transformation matrix: 1.000000 0.000000 0.000322 -0.000000 1.000000 0.000294 -0.000322 -0.000294 1.000000
16:25:01.185 : Printer height:160.86
16:25:01.185 : CurrentZ:19.09 atZ:18.95
16:25:01.595 : Printer reset detected - initializing
16:25:01.595 : start
16:25:01.605 : Detected EEPROM version:20
20:36:51.524 : skip 0
20:36:57.326 : N25 M340 R400 P0 S1865*108
20:36:57.386 : Error:expected line 24 got 25
20:36:57.386 : Resend:24
20:36:57.396 : Resend: N24 M340 P0 S1865 R400 \N G4 P400 \N M114*35
20:36:57.396 : Resend: N25 M340 R400 P0 S1865*108
20:36:57.396 : skip 0
20:36:57.406 : Error:expected line 24 got 25
20:36:57.406 : Resend:24
You have not pasted the relevant part after start with restart reason that shows the restart reason. I think "Printer reset detected - initializing" is a response of your host to "start" detected and not the response from firmware.
You can not send
M340 P0 S1865 R400 \n G4 P400 \n M114
from hosts as one line. Hosts will not split commands at \n causing errors. But the only critical command is
M340 P0 S1865 R400
and only if the probe was already deployed otherwise current would be less.
You can try also
G30 P1
which only deploys before testing and
G30 P2
which undeploys after testing.
Thanks so far for your help!