Repetier

About

Username
Repetier
Joined
Visits
2,088
Last Active
Roles
Administrator

Comments

  • TWI_CLOCK_FREQ gets define in pins.h in your boards section. If you did not select a Due based board this would be a problem. Most boards use #define TWI_CLOCK_FREQ          400000
  • The problem is that in your case the server does not recognice M190 as slow command. Question is why it gets recogniced in my version and your identical version does not do it. Ok I had to reduce the temperature for my printer but that should not ma…
  • oops answered in the same wrong place!
  • You can add a script like #define Z_PROBE_RUN_AFTER_EVERY_PROBE "G4 P200" to wait 200ms but that is after it was triggered and it might be still in triggering state from the position. Alternatively make it start so high that going down takes the ne…
  • It's crazy. When I run your code everything is ok also it look sver ysimilar to your log: < 14:19:35.780: N12 M532 X100.0000 L0> 14:19:36.073: ok N12 P15 B3< 14:19:36.073: N13 M532 X0 L0< 14:19:36.073: N14 M531 bom< 14:19:36.073: N15…
  • Check your eeprom values. z min = 0 z length = 95 is what it should say. G28 M114 should show Z 95 then. Maybe you have not updated eeprom and only configuration.h?
  • I really would not bother. Normally you print first layer 0.2 - 0.3mm (I always use 0.3) just to get good bonding and no problems. But even with 0.1mm height it might print well. I would be happy about such accuracy myself. Since you have so much no…
  • Please read the "Advanced Setup" part in server manual (best after upgrading to 0.85.1 where it was fixed a bit). If you then have special questions let us know.
  • So only conclusion can be that while full on (no flickering) it does not get the same power as when connecting directly to power. Did you measure voltage on the MOSFET output? You could try to switch the output port to an other mosfet in case the ch…
  • Could you please send me the gcode where it happens. Can not reproduce this way. Looks like server does not recognice M190 but when I do it it does, so maybe something in your gcode is different that is not visible directly.
  • So you need SDSS to be 4? I rechecked and saw that the sd card port has CS0 and CS1 pin which are 4 and 10 and I also checked that 10 is what I needed. So now I ask myself if they changed the pin after sending me the display or if you have a differe…
  • No you have to run it from terminal console, e.g. by logging in using putty. The webinterface solution is what is broken.
  • 0.85.1 only had some minor fixes, nothing network related. Which os and version are you running, so I can check it.
  • Thanks. Have tested it and did also not get it working. Looks like the MJPG format differs somehow from mjpg_streamer generated source so our new handling seems to fail on this. Will look into this and fix it for 0.85.2. What is still working is if…
  • Could you enable advanced ok in marlin configuration, so we see where the ok belongs to. Without knowing which line ok belongs to it is guessing and knowing is more critical here. After that you might try enabling ping-pong mode. Then it must wait …
  • Your test only shows that it can heat more. What I suggested was testing what firmware is doing to get that result.
  • Actually these are very good results. You have only one value at -65/-65 that looks wrong and makes the image ugly. All other values are so near to 40 that I would not change a thing. That wrong error might have a reason maybe some pla on surface ..…
  • Update and new installation are exactly the same steps. We have adjusted the infos so in short you should also see the steps  What also should work is running: sudo /usr/local/Repetier-Server/bin/RepetierInstaller /usr/local/Repetier-Server/etc/Rep…
  • You are right, no other spi is now configured which was why I suggested it and it should have worked like it did for me. Not sure what the difference is. Apparently there must be one.
  • Check if motors get power at all when you move so they block. If not you must invert enable signal and try again. That would be at least one reason. Or course wrong driver orientation would be an other or no main power if you connected power to the …
    in CNC 3 AXIS Comment by Repetier June 2017
  • You are right. Could reproduce it and it is a bug in 0.80.3 and 0.85.0 that breaks autoupdate. So until you have 0.85.1 you need to download and sudo dpkg -i filename to update the version.
  • Slicers have a folder where these are stored and it depends on slicer. Host settings are in registry in HKCU/Software/Repetier
  • The question is here how good can you measure? You can correct in the range of measure tolerance of course, but 4mm is more then tolerance. But remember to measure from rotation center to rotation center! Horizontal radius might also have influence …
  • Please check temperature graph with power output. Is it still firing? Then you might have reduced max. pwm so it does not get full power. Also possible would be that you hit a max. temperature setting and it reduced the set temperature, so also chec…
  • You can try new 0.85.0 version where I made some changes so I did not get the error any more. Maybe it helps also in your case with the same fix.
  • Not really. We are still planning this and have some good grasp how we want to do this, but it is so complicated that it takes a good while as this is a distributed system over several servers. First we want to add slicing capabilities and then join…
  • Timing was just a guess. Problem is no one really understands how file systems work and we are just happy the file library normally works. That make sit hard to analyse why it now says it doe snot work even if initialized with same parameter. Simple…
  • Dev version is stable also called dev. It just gets modification all the time that might require new parameter etc. We only change this otherwise stable would not be stable:-) For us stable = fixed. I'm pretty sure z probing still works, but you sh…
  • There are 2 escher solutions. use the one with fixed rod length and set it to known length. If it is 4mm off your geometry will be wrong in size. That is something z probe does not show as it can not test and your optimization diverges from real geo…
  • On AVR systems you can not get exact timings. You can come pretty close which is what we do. But if interrupt is blocked the stepper interrupt also gets delayed accordingly if it would normally fire. Also on fast speeds you get double and quad stepp…