Repetier

About

Username
Repetier
Joined
Visits
2,088
Last Active
Roles
Administrator

Comments

  • Yes you are correct. Z2_MINMAX corresponds to second z motor. Then it should work.
  • If you mean if we can have one extruder with motor 1 and one with extruder 2 parked at opposite sides then the answer is yes. You need to use the dev version (1.0) and can select this in the x motor section in config tool (dual x motor)
  • Why do you think this is possible? If the pins really match that means smartramps has the 5v there where display expects beeper pin. You can not modify this.  It might work if one of them does count the other way around. 5v and gnd are those that mu…
  • Host doe snot really matter as it just sends gcode and the error is communication. Only baudrate influences communication on host side. But you also mention server so same rules here. eeprom contains baud rate and some parts influencing how hardware…
  • Hardware SPI is currently quite a pain since apart from having 4 hardware SS there are also different speeds and modes and solution s displays/sd card handle all this. So the best solution I think is having software SPI for this. Then you do not get…
  • On the other side I now found a bug from this error that prevents it on upcoming versions:-)
  • Linux hat mehrere Konsolen wenn man lokal eingeloggt ist. Ich glaube Alt+1 bis Alt+6  bringt dich zu den Textconsolen und Alt+7 wider zur Grafikansicht. So kann man auch lokal editieren. Aber wenn eine Verbindung besteht ist der Zugriff mit Putty do…
  • I guess it would work, but you know if power gets on normally so just adding a G4 to delay until power full yon would also suffice I think. Or you enable power on the firmware side directly - after all we have the PS_ON_PIN to control power via gcod…
  • In version 1.0 they come into displaylist.h in older versions it is in ui.h, but you need to find the right place. We have a RRD in our list yes, but each board uses different pins, especially smart ramps which is meant for due boards might differ …
  • If you talk about repetier-server it will not wait. The process is started in background. It might take some ms to come back but it will not wait for script to finish.
  • My guess is that displaylist.h/ui.h does not have a pin mapping for that board/display combination. We have not mappings for all combinations and without correct mapping it is using the wrong pins.
  • You should google compile/configure marlin firmware. These files are what you need and marlin is the firmware they used on your printer. So with these files you can recompile firmware and change settings. But Marlin is not topic of this forum as thi…
  • You have 4 scripts with your cura configuration (start, end, before and after extruder switch). One of the scripts must be modified and have an error. Copy the scripts used one by one to an editor, delete in config, save and test. At one point it wi…
  • Reset is always useful as you see - but does not work on all printers. That way you know it is fresh initialized and even if firmware was hanging it starts responding due to reset.
  • Der Bildschirm ist optimiert für touchscreens und nicht zum nutzen am Fernseher. Daher ist die Maus auch auf unsichtbar eingestellt - vermutlich funktioniert sie kann aber nicht gesehen werden. Tastur wird in der Oberfläche nicht genutzt ebenfalls w…
  • M42 P25 S255 would set it high. If that works you can add that to the start gcode #define STARTUP_GCODE ""That way it is always enabled just like you need it.
  • Jerk is the variable determining the slowdown, but a jerk set too high will cause loosing steps sooner or later. So be carefull on how high you go. Also higher accelerations might reduce the time spend while switching directions and reduce the visib…
  • http://www.reprap.org/wiki/Gcodes shows how it should work. Checksum is not required. You can simply use the arduino ide serial monitor for testing with that baud rate. Ascii commands have to be terminated by \n or \r\n. The resend comes only if yo…
  • You are right - UI_HAS_BACK_KEY says if you have a back key or not and not menu entry. If you have the key the menus are removed. The problem with the file menu is a bit difficult since we can not add the content, so files gets added dynamically an…
  • M92 X80 sets steps to 80 in ram, not in eeprom. You will not see anything just start using that until you overwrite it with some eeprom related function. The link is to a chinese website I can not read, so I do not inverstigate why the newline is m…
  • If you have baby stepping enabled it always works. Of course any homing like move will remove all done baby steps, but you should be able to readjust after homing again.
  • Clearly nothing I'm used to see. Only reason I know where this might happen is if you have backlash enabled in your firmware. Then changing x direction makes a pure x move to compensate backlash which slows down movement to 141% jerk I think. So ple…
  • WPA-EAP is not the typical wifi type. We have no such system for tests so I can not say what the network manager does if he sees it. The V7 image uses the script  /usr/local/Repetier-Setup/bin/manageWifiAccess to setup the wifi using …
  • What do you mean with upload again? When manually enabling heaters work there is no reason why it should not work if a longer gcode is send. It is exactly the same function. Would only make sense if the gcode misses the heater commands but in that …
  • The problem here is a missing return+newline which firmware normally sends. Exactly which firmware and version do you use? Just checked 1.0dev and it would send a return. Also does this happen every time? In general it is no real problem since host…
  • At least you should check if your slicer supports multiple fans or not or you can not generate the gcode. Normal solution is that all filament cooling fans turn on. If you always want fan 100% you could do so in slicer extruder switch code, but nor…
  • Actually G33 has only a position test when activating probe, so if it stops when because IR probe is triggered before going down, which is forbidden. So I also guess that it is reflection. Maybe you can reduce sensitivity so it needs to come down mo…
  • Prints appear at coordinates where it got sliced. You see it in the gcode. So if teh object wa splaced in middle and appears after slicing on the side then you should check the coordinates for bed and size in host and slicer used.
  • As far as I know the UDOO has a switch for the usb connection. You can have it internally on the board and then ttymxc3 would be the device if i understood you right. But if that does not happen you could simply connect usb cable to programming port…
  • Only one mapped means configured firmware for 1 extruder? Having all 4 and only ever activating same extruder should behave the same. Switching active extruder might then activate the problem. If that is the case check where the motor/heater wires …