Repetier

About

Username
Repetier
Joined
Visits
2,088
Last Active
Roles
Administrator

Comments

  • You don't have busy support compiled in as it looks. So timeout 0.1s is bad idea. Every time a command that is not known to be slow takes more it will assume a missed ok which will cause frequent communication errors that will get fixed, but I don't…
  • When you mean in platformio.ini then the difference is to which usb port you are connected. They require different upload settings to upload, but create the same binaries. Connection in image looks good. I think "Wachtend" was the translaters choic…
  • Bus 001 Device 007: ID 0403:6001 Future Technology Devices International, Ltd FT232 Serial (UART) IC Das ist dein Drucker. Er nutzt dann einen FT232 chip für die Kommunikation. Hat aber noch nichts mit der Firmware zu tun. > dann zeigt er mir auf…
  • Grundsätzlich waren alle Ideen richtig. Buffer 32 erlaubt längere pausen zu überbrücken ohne Daten. Datenübertragung ist mehr als genug. 300 Zeilen pro sekunde sind ja schon gut. Zuerst würde ich logging einschalten und sehen ob es Kommunikationsfe…
  • When you slice an object the slicer normally defines temperature and sets it there. So you need to change the temperature in Filament description and reslice using that filament to get a new version with that temperature. You should check in temper…
  • Is it 32 bit intel/amd processor? Not many around so 32 bit is normally an arm processor which is why I ask. Guess it is a problem with dynamically linked libraries that do not work any more. Will see if I can replace it with a static version.
  • I guess you have enabled ooze shields which are used in multi color prints to protect from oozing. All slicers have a switch for them.
  • M105 is send by server every second if firmware doe snot support autoreport temperature. My guess is that massportal has modified the firmware on their own. E.g. making a C: appear for chamber.
  • As you get "ok" back, the rts/dtr settings are ok. Your problem arises if firmware sends an "ok" and server does not receive it, e.g. due to communication errors. Sooner or later that causes a timeout where server assumes that just that problem happ…
  • /dev/ttyUSB0 ist nicht der grund. Eher ein Problem weil die Namen nach der Reihenfolge wie die Geräte entdeckt werden. /dev/serial/by-id/.. sind auch nur links zu /dev/ttypUSB... daher kein unterschied. Was eher ein Problem ist "Die USB Verlängerun…
  • It really depends on how you plan to work. But I also prefer it as lazy.
  • Most important is this: https://docfirmwarev2.repetier.com/config/printer_type#idex it describes which extra variables are needed for idex printers in V2.
  • That eeprom image looks strange. I have never seen these entries. Was that with the original due version over their connector? If so it looks like they modify the output. I hope they have connected all sensors etc to the board. The Problem with the…
  • Ja, das ist ein bekanntes Phänomen. Wichtig ist der Teil: 19:28:44.111: N54692 G1 X160.992 Y110.495 E0.1762219:28:44.434: ok19:28:44.434: M117 ETA 19:57:33 day 119:28:44.468: ok (2)19:28:44.468: N54693 G1 X161.630 Y110.495 E0.0327119:28:44.468: N54…
  • If your computer is slow there might be extra stops due to delays caused by overload, but with good firmware setting it should not shift the layer. But that it makes a difference shows that pc was overloaded for the task.
  • Ye they also need to be deleted. And don't forget configuration_io.h where they get defined. This firmware requires 2 configuration files and both are equally important for it to work. But that is all described in detail in our documentation here ht…
  • That is why I said supported board:-) This board uses a different processor so requires completely different HAL abstraction. Only V2 firmware will support multiple processors but that one is currently not included. It is on the list but I can not s…
  • That behaviour is influnced by #define LAZY_DUAL_X_AXIS 0 Set it to 1 for lazy mode. Then it will move to position with first extrusion and otherwise stay at park position. You might want to upgrade to 1.0.4dev which has some improvements here.
  • First connect using ethernet cable. That solves any wifi problems that might slow down communication in case it was slow. Don't forget you get a new ip for ethernet connection while wifi ip still exists! Click on home in server and you see at the bo…
  • Is this on a pi? Then check here: https://www.repetier-server.com/knowledgebase/undervoltage-and-throtteling-of-pi/ Also check server.log if it stops due to usb disconnect. But undervoltage on pi is the typical reason for this problem.
  • I forgot one position. Extruder.cpp line 585 void Extruder::initExtruder() { uint8_t i; Extruder::current = &extruder[0]; this sets the initial extruder as well which also must be 0 or you switch from 0 to 2 at start.
  • My i3 mega has same problem. Problem is it just makes beep, writes it to printer display but does not issue any message to server so there is no signal we can use to detect this. If firmware is configured to send the usual action message es defined …
  • Filamentsensoren sind so ein Problem für sich. Jede Firmware macht da ihr eigenes ding und manche kennen auch unterschiedliche Lösungen. Grundsätzlich kann man das auf der Firmware oder Drucker Seite lösen. Da er hier nichts gemacht hat kann er es v…
  • In current firmware in printer.cpp around line 1400 you see #endif // DRIVE_SYSTEM Extruder::selectExtruderById(0); #if FEATURE_SERVO // set servos to neutral positions at power_up There extruder 0 gets selected for start. Set this to 2 and it s…
  • Hoffe das war nach dem Problem - grad am Anfang ist es ja eh meist 0. Dann hast du schon mal eine gute Stromversorgung für den Pi und das ist nicht dein Problem. Was dann Besserung bringen kann ist ein geschirmtes kurzes usb Kabel. Sieh dir aber auc…
  • Your solution was good except that it selected wrong start direction. Zip also leads to same files. Maybe easier to handle if you have no git experience. But with git it is easy now to update to latest release just by pulling changes. But as said re…
  • Which does not mean anything since it is easy to change name string in open source firmware. I know marlin supports the board while we don't so I guess it is Marlin. Especially if you see no REPETIER_PROTOCOL in M115 output.
  • Not in V1 firmware. There all extruders share same max. temperature so you need to set it for highest temperature. There are 2 ways to make it less problematic - limit max pid value to something that doe snot get too hot. But that limits also speed…
  • Serial com errors normally show that something did go wrong during connection. Are you sure you are using right port? Does it vanish when you unplug printer? If not you might need to install the serial driver for the printer first to see correct por…
  • The clone from git is part of the problem. The git contains more then just the PlatformIO project. But at least you already have all files:-) In VSC go to file ->open directory and open the src/Repetier folder of what you downloaded. Then Platfor…