Repetier

About

Username
Repetier
Joined
Visits
2,088
Last Active
Roles
Administrator

Comments

  • You need to define a z probe. Select just an unused pin to fake it. Then use G33 R0 to reset matrix and set values manually only. Do not forget to enable correction.
  • The RRD use software SPI for teh display and hardware SPI for the sd card. For the MAX a software SPI solution would also work if implemented. Only problem is that I need to pass MISO and CLK pin in addition somehow. So adding some softwrae Max... m…
  • Repetier.ino describes G33 syntax. The config tool also descripbes the config parameter.
  • Sounds like it really did not contain print moves. You can see that also if you check the generated gcode. Look for G1 moves with E... If the object has thin walls they may go undetected depending on extrusion width. Sometimes the feature "Detect t…
  • Already tried with a other object that worked before? Also make sure to select show complete gcode.
  • Did you remove it in slicer manager? You can add it there again. We haven't removed it for sure.
    in cura. Comment by Repetier January 2019
  • Did you check MPX3 board? I think there is one more output for fan. Guess it could be exactly that layout.
  • Latest Arduino IDE support subdirectories with fixed structure. E.g. sdfat is in a subdirectory. Main problem is that the IDE will not show the files, just compiles them. But yes, platform.io so so much better especially with using a real developmen…
  • Compile with distortion correction. That adds G33 whcih stores a map in eeprom so you do not need to repeat everytime.
  • You mean homing or in normal operation? You can disable it for normal prints which is done to prevent blocks from false signals setting ALWAYS_CHECK_ENDSTOPS 0.
  • It is not exactly the bed size - it is the min/max positions allowed in general tab in printer settings that must match.
  • Yes, SPI pins might not even be on the pins where they are for RAMPS board plus sd card has a 5-3.3V level shifter on smart ramps. So what happens there if you start only with 3.3V? Just looked into MAX31855 datasheet and that seems to at least wor…
  • No, you really need to write the code in server if you want it to disable. The problem is there is so much you might want to do at stop/pause/continue/finish so adding switches for everything is just a endless list. Now we are flexible to do anythin…
  • Prusa slic3r config by default makes a extrusion at y -3, so go to general tab and set y min to -4 there and the message disappears. Had the same problem with my Prusa MK3 :-)
  • Our firmware has no STM32 support at all. I can also not say when or if we will support this in the future. So currently you need to use a different firmware that supports your board. I think smoothieware is also STM32 based, so that could work. It …
  • The last error is wrong configuration. If it works only from host you have the script in host stop print script. If you print over server the host scripts need to be empty and the server scripts should contain the code. That way in all cases the rig…
  • You mean you enable in server the bed then connect bed and it is shown off?
  • It depends on your target. If your target is to make a pull request so it gets part of dev version, then yes, you need to use the next free number. The list is not allowed to have gaps as it is a map for all languages. If it is personal mod only ch…
  • Can you copy/paste the result when you do not trigger it and when you trigger it.
  • What firmware are you using that you get disabled in host? Host parses M105 responses and there is a /target which decides if host says on or off. Maybe your firmware does not send this and host does not see the commands send by server to have the e…
  • Thanks for sending the ramps-fd. If you have also include the max33.. sensor. I have none and as I understand the problem is having both running, right? I mean they have a old 0.92.8 version whcih they made a picture of so I guess that should work j…
  • Uploading directly or to models does more or less exactly the same operations. So if model upload does not work it might be something in the directory. Stop server: > sudo service RepetierServer stop Go to > cd /var/lib/Repeti…
  • Maybe I need to test with my Prusa MK3 and hope it behaves like normal marlin to understand. It is my only marlin printer with z probe.
  • Send M119 to the printer and see in log what it responds. Hosts allow sending manual command. How did you test endstops before?
  • spi is a bit troublesome if you have different spi devices and they use different modes. I have added software spi for sd card now also I have no device to test it.#define ENABLE_SOFTWARE_SPI_CLASS 1 #define SD_SOFT_MISO_PIN  10#de…
  • Check manually what M119 reports and if zmin changes to H when you trigger it. That is what gets tested and if endstop is configured wrong it will not switch.
  • You need to use /dev/serial/by-path/... instead. That way it matters where it is connected not order of detection.
  • Could you try dev version? I recently added some fixes from the original library to improve compatibility with old sd cards. From teh changes it seems that timings for reading commands were changed.
  • In printer settings enable "Check Extruder & Bed Temperatures" woudl be my first try.