Repetier
About
- Username
- Repetier
- Joined
- Visits
- 2,088
- Last Active
- Roles
- Administrator
Comments
-
Do you always shut down pi before removing power? If not it might be a defect on the sd card. If you have a second card you could try installing image there as counter test. Question is what is defect - server executable or some data it reads during…
-
Zufällig curaengine verwendet? Der kann nozzle 2 nur wenn 1 auch verwendet wird. Wenn das das problem ist, einfach als ein extruder system konfigurieren und vor dem Druck 2. nozzle aktivieren.
-
Wurde die Datei mit dem Tool erzeugt? Nur dann übernimmt er die Daten. Bei diesen Configs ist am ende ein großer json string eingebettet der die Daten für das Tool enthält.
-
Ja das könnte ein problem sein. Zumindest wenn es das extension board mit geteiltem enable signal für alle motoren darauf ist. Hier wäre ein Wechsel dann auf ext0/1 besser und dann die extruder am extension board wie es gedacht war.
-
Working on monitor improvements.
-
We are waiting for the printer. Contacted prusa last week and they promised to speed up delivery, so hope it comes soon for testing. If you can provide a full log around a problem you experience we might be able to help earlier.
-
Ok, that is no graphic problem as I thought from description, but a positioning resp. content problem. You see one version has 1: and 2: before temperature and the other version shifted not, so it is 2 chars to the left. What language are you usin…
-
Sieh dir mal #define MOVE_X_WHEN_HOMED 0 an. Wenn da 1 steht must du erst homen um die Achse zu bewegen.
-
Do you have programming skills? Making a board description would not be that hard but I'm quite sure there will be some hacks required to adjust from F4 to F1 architecture. Don't expect much as we use high level functions mostly, but it might happen…
-
Good point. Also it makes comparing to computed time difficult. Currently there is nothing you can do, I need to solve that iternally by increasing start time by paused time.
-
Repetier-Server Monitor is released where you can upload by saving to the right folder. Prusa Slicer has no new function to support server.
-
Schwer zu sagen. Sind end stops getriggert wenn das passiert? Schalten die Motoren ab nach einiger Zeit und sind Bewegungen nach abgeschaltetem Motor verboten? Normal sollte nach dem homen wieder alles klappen. Wobei ja selbst wenn man y bewegt und …
-
Is this with our server image for pi? Haven't seen that notice so far. There we start it like this: chromium-browser --app-auto-launched --disable-pinch --incognito --noerrdialogs --disable-suggestions-service --disable-translate --disable-save-pa…
-
Do not understand the talk about free version. There is no paid repetier firmware. Regarding delay you need to find the matching #define UI_DELAYPERCHAR 50 in displaylist.h and increase that value. That is the delay between changes when sending da…
-
No, that board is currently unsupported and for V1 it will keep unsupported. We might add a HAL for V2 some time - it uses the STM32F1 processor and we already have STM32F4 support, so that should be not the biggest thing to implement. But I can not…
-
Problem hier im log scheint Befehl 21 zu sein der gar nicht da ist. Könnte sich auf M117 beziehen wo die Zeilennummer nicht mit gesendet wird, weil einige Marlin Versionen das nicht verstehen. Auch wenn es mich echt stören würde, vermute ich das es …
-
Firmware uses mode and checksum to detect if eeprom is good, if not it is initialized with values from configuration.h - you never use eeprom upload anyway. EEPROM backup should be 4KB or more depending on how much the processor has. Flash back nea…
-
Yes it is quite easy. In config tool select for example E2 (third extruder) as motor. That will result in something like #define EXT2_STEP_PIN ORIG_E2_STEP_PIN#define EXT2_DIR_PIN ORIG_E2_DIR_PIN#define EXT2_ENABLE_PIN ORIG_E2_ENABLE_PIN now these…
-
If you activate the log (easy mode off) enable ack do you see any responses from firmware? If not baud rate is set wrong. Sounds much like serial connection is only the you connected to com port but communication fails due to wrong baud rate. Would …
-
As said there is no setting for shifting. My guess is that the display has some timing issues missing the first 10 pixel so everything shifts. Maybe increasing UI_DELAY... something like that to higher value makes it go away. But also display is the…
-
There is in deed a technical required minimum speed so acceleration works as expected. That speed depends on the acceleration. Lower accelerations also allow lower speeds. I guess that is what you are experiencing. Only with V2 where we switched the…
-
There is no option for that, it normally is not shifted. Is this on all pages or just one where the content maybe did not fit also coordinates normally fit? Is it the complete text line or just one pixel row with offset?
-
I fear it was pure luck that it happened so fast with you if you normally take weeks to get the problem. So it is a really rare condition we need to find. Will also reread the source in the function with the problem in mind in hope I see I race cond…
-
In the correct solution your password trick would not be required. As you already pointed out the regular link already contains a session identifier. So I modified the query to require an authenticated session for the next release. That way even in …
-
Not really. I could identify the function where it crashed - the analyser of responses. Unfortunately a quite big function so it is not clear where exactly the problem is. I'm now running 24 concurrent virtual printers with jobs in debugger with ful…
-
Looks like they implement menu mode by just faking a ST7920 chip with connections. So for that mode you would just select the reprapdiscount graphic display which uses that chip and connectors and connect it. If it does not work check if DisplayList…
-
Einfach /var/lib/Repetier-Server auf den neuen Kopieren und alle Daten und Einstellungen bleiben erhalten. Repetier-Server-Monitor kann auch davon ein backup als zip Dateien ziehen. Danach muss das aber manuell zurück kopiert und entpackt werden.
-
Sorry, don't speak french. If you reached server with localhost in windows 10 it was installed on windows and not on the mac. We also have a mac version of server, so just install that on mac and reconfigure it.
-
Thanks. Will include it just in case someone has it on autostart. Won't hurt to send unused command.
-
Looks like a self made prusa style printer. Never seen, but also not really relevant for your problem here. Check end stops with M119. My guess is that you have ALWAYS_CHECK_ENDSTOPS activated and end stops are configured wrong always returning high…