Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
sendM355 S1 to enable and M355 S0to disable it.
-
1. I use ZYX and it does it only once. Problem is lazy means x moves out first move after homing, so if Z comes after X it is out and that is not intended if using lazy, so we rehome x so it is in park position. 2. Again lazy = move x next move. Onl…
-
It says it measured 4mm difference. Use clipboard to copy the values as a grid into excel or texteditor then you see the values for the colors. Guess one measurement was wrong. One important thing is to never stop printer during during measurement. …
-
Ok, see what you mean:-) Would be an idea also it could be quite a bit it deletes as it is not per layer but an aggregated path for old stuff. Will think about it and if it is better then seeing all but with low quality. After all in server we only …
-
I try to have github dev and config tool dev the same. config tool is only delayed if I'm not sure about an update.
-
First you should use Repetier-Host bed height map feature and make a map after leveling. Hard to see from the result patterns but I think you have reagion dependend height differences, not a linear error from left to right. This makes autoleveling c…
-
Not really. I read sometimes an article or browse through other peoples code to learn how they solve things. So over the last 30 years I accumulated a wide spread of ways to solve things. I do not think there is one good book that makes you a good p…
-
EXTENDED_ENDSTOPS is just because endstops is a 8 bit field with 1bit per endstop. First covers 8 so has the most widely used. If you need new bits e.g. for X2/Y2 you have to store them in second endstop flag byte. If you look into printer.h you see…
-
For deltas I always suggest due boards as they allow 600 updates per second and still allow higher speeds.RADDS with extension board would maybe the best solution I know with 8 ports.
-
You need to disable printer in server to free port for other software.
-
Both are for flash.. The one without F was for strings stored by Com:: in flash so no conversion was necessary. You want one of these #define UI_STATUS_RAM(status) uid.setStatus(status);#define UI_STATUS_UPD_RAM(status) {uid.setStatus(status);uid.re…
-
See you use a 5x5 grid. Thats good with warped bed. And result shows bed is nearly rotated to optimal position. Printing with 0.3mm first layer height should already be possible that way. If you use G33 please use latest dev version from today. Just…
-
Normally it would hit all 3 endstops and then all go back. You need to go back enough to not trigger endstops any more. And after last retest you need to go down enough that selection of extruder is possible and endstops are also not triggered. Chec…
-
I don't think so.
-
DELTASEGMENTS_PER_PRINTLINE is compile time only. In host and server you can backup your eeprom settings to disk. Always a good idea if you have modified them.
-
In server configuration you can set z coordinates after homing. Z10 is unexpected and I think you have set it to 0, so server assumes of course z=0 after homing which is not true.
-
G1 Z300 in absolute mode will not move on second call as you are already at Z300. Use Z500 or Z600 (lower then z length as it would otherwise ignore move). Z steps per mm are used for all z moves. These van be computed e.g. with the leadscrew calcul…
-
You seem to be using an older firmware version. Here is the core problem: sketch\Extruder.cpp:1206:2: note: in expansion of macro 'WRITE' WRITE(EX10_ENABLE2_PIN, EXT1_ENABLE_ON); so in your version it is line 1206 where the line needs to be exchan…
-
You can disable this behaviour on own risk in preferences -> basic settings -> reduce quality. Reason for this is that when updating 3d view gets to slow it might also get not enough lines to printer as that would slow down as well (except if …
-
If you home to min that position is 0 and from there on you know how much you moved, so positions afterwards are known. All you need is set steps per mm correct and set xyz length to what is possible. You can start with higher value and and test whe…
-
Ok, 802 is not 900 so that might be the problem. While RADDS is always a better choice on deltas, you should first fix it on your 8 bit board. Reduce DELTASEGMENTS_PER_PRINTLINE until you have enough free ram. In config tool only visible in expert m…
-
Could be not enough force so it stalls. Maybe temperature is not high enough so it can not put new filament through until it is melted a bit more. Could also be overheating of stepper driver so it pauses until cool again to extrude.
-
ALWAYS_CHECK_ENDSTOPS 0 would check only during homing. Only drawback is that it is for all endstops.
-
Also it might be another error but that was the only one I found with same wrong pin name.
-
You need to replace the line where the error occurs. If you have a different version lines may differ.
-
I guess you mean receive buffer, but there 127 is ok. That is what you have. If you have a delta printer it would be important to have at least 900 byte ram on printer board ram. Arduino shows this after compilation what you have. If you don't have …
-
Yes, so E port is defect or you have settings not working for that. E has much higher jerk (start speed), acceleration and steps per mm set normally then x,y and z, so check that in your eeprom.
-
But it will not work. buf is in ram and the F says search flash memory same address. For ram always use the non F functions!
-
Looks like a bug in source, should be WRITE(EXT1_ENABLE2_PIN, EXT1_ENABLE_ON); in line 1372 in extruder.cpp at least in my version.
-
Yes, but CAM software likes them as you need them going around a point everytime.