Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
I mean the log window in host, the lower part with the output. there you see it used generic 1.1. Host requires 1.5 or higher to work good. Not sure why OpenTK sometimes does not choose a available good OpenTK driver. That is the library we use for …
-
See first lines in log. You see it selected the microsoft generic OpenGL driver. That one always crashes sooner or later. So th ebig question is how to convince OpenTK to select the OpenGL driver of your graphic card. On laptops this often depends …
-
Good question regarding the fact that it works for me. First make sure you also have selected the same filament on the right side as you have defined in cura engine settings. Make sure changes are saved before using them. Also make sure you have not…
-
If it doe sit is a long way. First I need to get the new system going well.
-
Main problem is if you look into extruder.cpp managaTemperatures that a mixing extruder is a special case and it assumes all extruders use 1 heater from E0. You need a or condition that your special case is not mapped to extruder 0. Same might be re…
-
Yes, on due based boards that timer works with 60khz so ca. 4 times faster. So if it works with 8 microsteps it will also work on due with 32.
-
With picture it is easer to say, but sounds like you have underextrusion so the computed width is not reached. Have you calibrated your extruder and the extrusion factor for your filament type?
-
Beim Pi 1 ist die Spannungsmessung nicht so ausgereift. Aber gut zu wissen das langsames usb hier hilft, das linux usb nicht trennt.
-
I think here is a better place since here you have some users using the driver, while I haven't one and no experience on this special problem. Only thing I can think of is current setting too low. And from reading the drivers doc I know you can adj…
-
Yes, there is a menu entry calling UI_ACTION_TOGGLE_JAMCONTROL to switch it on/off. One solution to find reason is to modify void TemperatureController::setJammed(bool on) { if(on) { flags |= TEMPERATURE_CONTROLLER_FL…
-
Maybe it will be possible in V2 to improve on that. It has more free ram and motion planner is easier. So here I might at least for a due which has the ram for this store the skipped moves and add an earlier stop. Not directly as this might cause lo…
-
Sure that is an issue. Extruder interrupt is limited to 15000 hz I think, so that would mean max. 8.3mm/s whcih is at least slow for retraction and for advance it might also be too slow. Explains what you experience I think. In V2 I will add advanc…
-
Since it is triggered by jam control I would search there. If the wheel looses grip it might not always move as designed any more. I think it moves most of the time but sometimes it might slip enough to trigger it. So clean wheel and/or decrease sen…
-
FEATURE_FOUR_ZSTEPPER allows moving z with 4 drivers. But all move identical. YOu can add them then as motor driver additionally to move them individually.
-
That config is not from repetier-firmware, so you are here at the wrong address.
-
Does marlin do it differently? To implement this is a non trivial task taking month of development time as it requires a path planner that can be backuped and modified on the fly.
-
For heated bed I would even use bang bang but pid is also ok with right params, but sometime hard as autotune does not always work.
-
The flickering before reset is already awful. Might be the period of heaters turning on/off so that would show that power is not stable I guess. If you connect with host/server do you see a reset reason? I would bet on a brown out message in the log.
-
Does it show everything if you do not select a range but the complete object? If it is a big object it might run out of video memory?? Would a smaller object show everything. If you still think it is a bug, push the gcode with the problem somewher…
-
You might even use bang bang with reduced frequency especially if using a mechanical relay and not a SSR.
-
Ok, that's bad, but planned path can not be unplanned and stored for later replay beside that stopping at 200mm might also cause loosing steps. So nothing we can do here. All you can do is reduce buffers but that might cause less smooth moves as opt…
-
See docs page on our homepage https://www.repetier-server.com/documentation/ Under "For Programmers". I think you want the web API.
-
Strange. Here is the advance calculation: #if USE_ADVANCE if(!isXYZMove() || !isEPositiveMove()) { #if ENABLE_QUADRATIC_ADVANCE advanceRate = 0; // No head move or E move only or sucking filament back advance…
-
No, we can not stop the moves already queued, or they would be lost. Normally you also have some mm filament available before the motor does not get any filament since the sensor is before the motor.
-
First look into log if you see anything there. It runs the start z probe script so you could have some commands there, but the z probe moves are n negative z direction, so if decreasing Z brings bed closer to nozzle it should work in right direction.
-
This is correct, only the 4 outer points are extrapolated. Extrapolating from extrapolated points makes not much sense. Firmware use use the outer corrections anyway if you leave measured area. You can also correct oute rpoints manually later with …
-
Hört sich nach schlechtem pi Netzteil an. Dann trennt linux gerne mal kurz die USB Verbindung und server connected sich neu = Reset. Leider ein Pi-typisches problem das wir daher bereits auf der Downloadseite des Servers erwähnen.
-
Don't forget to enable "laser" in that case! G0 is then without laser (travel) G1 is with laser.
-
See PM
-
Exactly. You can only choose the Z position after homing. You need to send a G0 after it to position xy where you like.