Repetier

About

Username
Repetier
Joined
Visits
2,088
Last Active
Roles
Administrator

Comments

  • Block frequency is what you want so 1000 blocks per second with constant speeds so speed changes every ms. If you have a move < 1ms this can lead to buffers running empty for the level 3 move planner, so you need to be faster to catch up for line…
  • Ich kenn den Router nicht daher nur wie es generell geht. Mit server verbinden, dein wlan auswählen und Kennwort eingeben und verbinden. Danach sollte er den AccessPoint trennen und sich mit deinem Router verbinden. Jetzt im Router einloggen und s…
  • That variable is not used at all. Just a relict of old code that I need to throw away. We now have a fixed stepper interrupt and at the beginning it disables steppers and later tests for enabling steppers. That way I do not need any delays any more.…
  • V2 uses a completely new motion engine that has nothing in common with V1. That is one of the 2 biggest changes (modular system is the second). So different behaviour will come from this. I have to think about the why. It is done in MotionLevel2 whe…
  • Ok, I reread the part I've shown you and the answer was already in that code part: #if FEATURE_Z_PROBE #if Z_PROBE_PIN == Z_MIN_PIN && MIN_HARDWARE_ENDSTOP_Z     if(newRead & ENDSTOP_Z_MIN_ID) // prevent different resul…
  • Try setting ENDSTOP_Z_BACK_ON_HOME to 10 - this is added to the target height for the last height correction after probing. At least in current 1.x firmware version.
  • Does it recognice the OpenGL driver? First lines in log. What does it report? Any error messages in log?
  • io_input_inverted_pullup is in deed wrong. Will add it for next update. I have no corexy system so no tests myself. My guess for the jitter are rounding errors. The positions are computed for short intervals by interpolating start/end. There will …
  • Der Lizenzserver erkennt das es der gleiche Rechner ist, ist also erst mal kein Problem. Sollten dennoch mal alle 5 weg sein eine Mail an uns mit dem Lizenzcode und wir resetten das. Aber bitte nicht hier posten, dann kennt ja jeder die Lizenz:-)
  • You should just need to change the printer type to the right corexy system and eventually adjust motor directions so it moves the right direction and adjust resolution. It is factor 1/sqrt(2) or 2 compared to what you might think. That should be all…
  • Only if you have used different values or a different version it would be explainable. Entering manually exactly the same values for the same version should give the same result of course.
  • When this happens can you still login using ssh or ping the pi? Since the server seems to be still running the question is if the ip has changed or wifi did go down or if it is a server internal problem.
  • Clogging normally happens if molten filaments get into higher regions of the extruder, so everything that prevents this helps. - Have a cooler for the higher extruder parts to keep it cool. - Lower temperature so it doe snot creep that high. - Less …
  • If both would probe in z direction I would make a switch which pin to use for testing and you are done. For the other directions it is much harder as there is no position counter where probe hits a signal.
  • Positions are not aware of any bed positions, but you can of course adjust where which coordinates are. You can define the minimum positions for x, y, z and the length. But you also need to be aware that with multiple extruders all positions must be…
  • You can have a y endstop and home. But there is no function available to measure the distance to an endstop.
  • So while everyone wants a heated chamber, you want to do the opposite:-) Main problem is that heaters and heater logic is just that - it expects power to increase temperature and disable power to lower temperature, so that will not really work. So …
  • It is a xml file so is readable by any text editor. Or rename it to .xml and you can open it in browser and see it nice formatted.
  • Please test the blink sketch first. Then firmware with no TMC enabled. In that case it might block if eeprom is not responding. That will cause a lock forever. If that then works you might test with TMC special drivers. If it then blocks it is the S…
  • What do you want to cool and with which device? We have already 3 cooler solutions for fans - extruder cooler, filament fan and temperature controlled fan. The last might also be used for many purposes like board cooling.
  • Actually there are only 2 reasons when extrusion motor gets not moved and that is cold extruder and dry run mode. There is a special case sending relative e coordinates in absolute mode but then motor jitters. You coverd quite well the typical reaso…
  • Don't know how to solve this for your virtual machine, but when I do this with parallels I need to tell it to show the printer usb connection to the virtual machine. You need to do the same, then you can install the udb serial driver and the port wi…
  • You need to download the armhf version. YOu have the armel version for Raspberry Pi 1 and Zero.
  • Did you select as Firmware RepRapFirmware and not the defailt Repetier-Firmware? Repetier-Firmware uses a binary protocol no other firmware can understand.
  • The height map depends on number of reported z probe results. If they do not match host gets confused and needs a restart.  For next release I put at least a test for the outofindex problem. So if it then gets more results as expected it will just …
  • Looks much better, except Z_PROBE_HEIGHT should be 0.3. You can set it in eeprom. That is the distance nozzle - bed when z probe triggers and which you thought was Z_PROBE_Z_OFFSET. z probe bed distance is the height where to start measurements from…
  • The log does not show which command was on that line and if it succeeded after the 3 tries or failed. Normally such an error can happen due to communication error and gets fixed automatically. Only if it doe snot get fixed it is worth enabling the l…
  • Ok, thank you.
  • For firmwares similar to RepRap firmwares this should be possible if the basic communication uses the same checksum/ok method. Then you can adjust response texts to what GRBL responds and add a matching init gcode. That was one of the targets of hav…
  • Yes, please send me what you changed so I can think about it. But the main problem would remain that something is not correct after this step and would need proper error handling instead of ignoring the error and not knowing the problem we get then.