Repetier

About

Username
Repetier
Joined
Visits
2,088
Last Active
Roles
Administrator

Comments

  • Acceleration is always active. Only solution is to set xy jerk to 2*print speed. Acceleration only happens when you are above that speed. But that is limited to what your printer can handle or you will loose steps.
  • How did it work with my other simple solution to use correct x length? SHould have added the same distance, so what was wrong with that solution?
  • In the homing direction where you want to home. We do not care if oyu home to min or max direction, just configure it for the right side.
  • Please upgrade to 0.92.3 and use the V18 image. I don't know why buster version sometimes get into the problem when WPA2 is defined. In the V18 image you can change the access point security to more unsecure methods in that case which then work: htt…
  • Yes, since the controller has no sd card slot that one will keep it's configuration and still work.
  • It only appears if you select a homing order with temperature that also allows defining z homing position. That is homing order you should use with z probe homing normally. Especially if the nozzle tip is the sensor any ooze will give wrong measurem…
  • sync geht schon in 0.92.3 ist halt nur falsch herum, darum aktuell true auch wenn du den default wert false bräuchtest. Ab der nächsten version wieder wechseln weil ich das ja korrigiert habe.
  • You must have missed a SDCARDDETECT. See in sdcard.cpp void SDCard::automount() {#if SDCARDDETECT > -1    if (READ(SDCARDDETECT) != SDCARDDETECTINVERTED) {        if (sdactive || sdmode == 100) { // Card removed            Com::printFLN(PSTR("SD…
  • Here how M280 activates right extruder: -Extruder::current->xOffset + static_cast(Printer::xLength * 0.5 * Printer::axisStepsPerMM[X_AXIS]) That is -204mm and ext0 would be at x=0 (not at parked pos -52). Not 100% sure if that is an error with th…
  • #define ZHOME_HEAT_HEIGHT 20 is your problem. It uses maximum of bed distance zhome heat height. So in this case 20 is maximum. Actually that is the z position:         RMath::max(EEPROM::zProbeBedDistance() + (EEPROM::zProbeHeight() > 0 ? EEPRO…
  • Not for the stepper driver. We need to set steps very quickly in an interrupt, I2C is much too slow and also I2C/SPI are not allowed in interrupts in firmware, only in main thread. For fan/heater it is not supported but doable if you can program. J…
  • For M280 you need #define FEATURE_DITTO_PRINTING 1
  • Here a config for a dual x I once had: /*    This file is part of Repetier-Firmware.     Repetier-Firmware is free software: you can redistribute it and/or modify    it under the terms of the GNU General Public License as published by    the Free S…
  • Früher gab es kein synchron oder asynchron, war alles asynchron. Ich hab das mal getestet mit einem Skript das nur sleep 60 macht. Ergebnis - mein testbefehl ist fertig aber weil die angeschlossenen kommandos den Ausgabestream noch halten, schließen…
  • As said repetier-server can do that. It logs positions send and can continue. Problem is just when you loose power the end of log will be missing and firmware will not tell where it stopped. So it is then up to you to find the correct position. Serv…
  • Please describe exactly your commands you send and what is happening. I see no error in the configuration and assume eeprom is having same values. So maybe start conditions are wrong or you expect something different to happen.
  • Using V2 means building firmware from scratch, not the printer. But RAMPS is currently not supported in V2. Currently only Arduino Due based boards like RADDS work. Need to write the HAL layer for AVR or better adjust it. Planned but not done yet.
  • Yes, both extruders must have offset x set relative to x = 0, so left one needs -52 * 80 = -4160 then.
  • Ok, das log war sehr hilfreich. Klar ersichtlich wo er hängt. zuerst mal hab ich herausgefunden das der Server synchronisierte Befehle nicht synchronisiert und umgekehrt. Das führt dazu das in deinem Fall auf die Beendigung des Skripts gewartet wird…
  • In combination Repetier-Firmware 1.0.4dev and Repetier-Server that is possible. Repetier-Server is our only product supporting recover. If you use any other firmware recover will still work but it will not know exactly where you stopped, so you nee…
  • Removing languages helped if there were too many selected so that your data size exceeds 64kb. That can cause strange effects like wrong messages. I think that is what helped here. Apart from that use latest dev version, that seems to work well.
  • Some boards also have a build in sd card which gets active if you disable display. When sd card gets inserted (or the pin sends the signal) it mounts and checks sd card for autostart file. You have SDCARDDETECT directly in configuration.h or indirec…
  • 12V on 24V has 4 times the power. So set PID drive max and PID max to 64, PID drive min to 0. Then it gets the correct power the heater was designed for.
  • Does not depend on repetier. You can send any command - they are implemented in Marlin not in Host. But Marlin is not our product so can not say how to debug motors in marlin. That is more a marlin question.
  • Kopier einfach /var/lib/Repetier-Server auf den neuen Rechner und installiere danach Repetier-Server auf dem neuen. Dann ist es eine 1:1 Kopie. Oder Nutze die Backup Funktion von Repetier-Server Monitor wenn du eine Pro version hast. Vor dem Kopier…
  • I see what you mean, but it is not so easy. For the config tool that might be doable but would be a lot of work and will most likely not reliably work with all epr files. We can not rely on position as these can change so we need to use descriptions…
  • Ok, ich sehe hier das 3 Drucker konfiguriert waren und 2 eingeschaltet. Es gibt aber keinerlei hinweise auf eine Blockade. Hast du das log erstellt nachdem die Blockade aufgetreten ist oder einfach so zwischendurch? Wichtig ist das du es erst macht…
  • Make sure dry run is disabled. Make sure extruder is hot. Check if steps per mm in eeprom is set correct. Check if extrusion mode is matching slicers output, relative or absolute. Normally slicer will make it correct if you do not override it. That …
  • Your extruder is massively overpowered. With output 40 you heat up as fast as I do with 255. M303 does not calibrate max/min PID and assumes 0/255 I think. Do you have a 12V heater on 24V? Or just so much watt power. In last image which is the only …
  • In V1 this will not happen. For V2 that is what I want, but did not have started mixing extruders in V2, mainly because I do not have such a printer. What board do you use for your printer and which motion type (cartesian/core xy). Maybe you could b…