Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
Yes, at 80mm/s you are right but do not forget travel moves which are often faster. I named the wrong parameter btw. /** If your stepper needs a longer high signal then given, you can add a delay here. The delay is realized as a s…
-
M502 M500 sets eeprom to values in configuration.h. Maybe your steps per mm for xy have changed so positions do not match any more.
-
DOUBLE_STEP_DELAY 1 is normally the value you want if 0 is not working. Some drivers want 1.8us so adding 1us to what it takes anyway helps if you have a DRVxxxx stepper driver. STEP_DOUBLER_FREQUENCY 12000 for 8 bit is ok and you can easily calcula…
-
That first layer is not touching is maybe just what you think. Especially if the bed is spring loaded the first contact is hard to measure. If you measure home-20mm I guess it also is 19mm if I see what you wrote. Try what I said, maybe first with 0…
-
You need homing order with preheat. In that case you can define exactly where to run the z probe and you do not need the wrong back on home setting. As preheat temperature just select 0 to not preheat.
-
Ja genau, das mit gdb meine ich. Hab mir den code angesehen und ein paar stellen optimiert, aber nichts gesehen wo ich sagen würde das ist es wo er hängt.
-
There is also the possibility, that the z home position is too high and the extruder head a bit flexible. First layer is on hard bed, so nothing to sing in, but next layers could force lower height by just putting the extruder weight on the print. A…
-
Strange thing. Do you have some equipment to measure heights of extruder. First I'd measure just by moving from home to 10mm and see if you get a 10mm change, then to 20 and 30 mm. Firmware will always use same number of steps except if a endstop is…
-
Ok, eine echt harte Nuss. Hab mir deine letzte debug Analyse angesehen, und dies gefunden Thread 9 (Thread 0x7f8e188ab700 (LWP 1315)):#0 0x000000000088aed2 in repetier::GCode::getAscii(bool, bool, boost::shared_ptr, bool) ()#1 0x0000000000960447 …
-
Do you already have stepper driver coolers and fan blowing on it? To me it looks like motor is loosing current from time to time. So if that was just one move it could be overheating of the drivers and then they disable power for a period and contin…
-
You get it directly or at first it works and then it gets disconnected icon? These are 2 problems that sometimes happen which we fixed in upcoming release coming very shortly. So for now I assume it is one of them. Especially if you can see webcam …
-
Why do you think pronterface does not use eeprom settings in firmware while repetier host does? There is no command to say do not use eeprom. If you have compiled eeprom support these values are used, otherwise not. Host just has a window to show th…
-
This is more like our repetier-server will work in the future. Host is by design limited to this behaviour.
-
Nicht zwangsweise. Was ist wenn du den Drucker deaktivierst und aktivierst? Damit erzwingst du genau so einen neustart der Verbindung und einen Reset des Druckers. Was klar ist, ist dass die Kommunikation nicht mehr rund läuft- Man sieht ja im Log d…
-
At the end of the function after "calculateMove" which is where it gets added and analysed.
-
That should reset to defaults, yes.
-
I do not think it is a host problem. Hosts only send the gcode. You can enable echo in debug options and you will see firmware received the commands and from there on it is a firmware/hardware issue. I don't know marlin good enough to say when it p…
-
Firs execute FString inside a command already called from a gcode can be dangerous, also in this case it is ok I think. Why jerk gets interesting here is that the planner sees a direction change of 90° for the extra move twice so it assumes jerk is…
-
No, first if you do it for every print to not save changes in eeprom. Just wears out number of changes possible in eeprom. Then G33 MUSt be after G32 as the distortion corrections get added to rotation. So G28 G32 G33 Is all you need.
-
It is not that we do not know the gcode, but is seems that the relative e positions and new prime tower handling brings unexpected results here. Got it already somehow fixed, but still the filament usage makes no sense, so I will further test with i…
-
What direction do you get if you move z up after connection? Home dir and endstops look good, but maybe z direction it self is set wrong, so you need to invert z axis in config. That it only goes 2-3mm might be a bad steps per mm setting, see eeprom…
-
So G28 works and sending other commands does not work? If that problem happens again check the log in server frontend console (enable everything) to see what is going on. At this point it makes no sense.
-
Wouldn't the hotend/bed pins provide 12/24 volt like for the motors? Make sure no hotend/bed has the same pin set or changes will be overriden at 15Hz, whcih could be the dot you see.
-
You only need to change values in eeprom!
-
What do I see in video? Several z moves so I can hear the clonk? I woudl try reducing z acceleration to 50 and setting z jerk to 0.1. What you hear is the shock at accelerating from no move so being smoother here should reduce the sound.
-
Sure you are connected to davinci and not have selected a virtual printer port. Then communication is just fakes and nothing happens. So check port setting in server printer settings.
-
The problem with CursaEngine is that there is only one change script and you can not query active extruder. But if both filaments have same printing temperature you can change old extruder temperature in deselect script M104 S{TEMP0-20} ; Not sure …
-
Distortion matrix is always stored in eeprom, or you need to disable that in config and redo before using. There is also a feature called bending correction. It spans a correction defined at the 3 points you define and adds that correction to measu…
-
In config tool you can edit them. And yes it is a gcode script where you separate commands by \n. So you can do whatever is needed for your special case.
-
#define ENDSTOP_Z_BACK_ON_HOME 1 is a bit low for delta. 10 or 20mm is normally better to prevent problems. For deltas homing failing means normally the endstops did not switch as expected, e.g. one is still triggered after going back. Then homing i…