Repetier

About

Username
Repetier
Joined
Visits
2,088
Last Active
Roles
Administrator

Comments

  • I think I have found it. Please update to latest dev version and try if it now resumes.
  • Ok, my implementation seems to work already fairy good. So will be included in next update.
  • First thing would be that you tell us what software you use. I guess host and one of the supported slicers. These slicers are not from us, so the process is nothing we can do. My current favourite is the Slic3r PE and it slices exactly the sizes I w…
  • Master should be bigger then the slaves or outsourcing cpu tasks makes no sense. I mean rendering a gcode image takes 3-6 minutes depending on size on a pi. My mac does this in 10-15 seconds. That is where it makes sense. Also if you use it as proje…
  • Yes, we develop it on windows 10 so that is no problem. Usb? DB25? Either?   You mean serial connection? Yes, but you must have the serial driver for the printer. We only connect to it.
  • The problem was what I shows in analysis: #if CPU_ARCH == ARCH_AVR        if(cur->isYMove())#endif            if((cur->error[Y_AXIS] -= cur->delta[Y_AXIS]) < 0) {                cur->startYStep();                cur->error[Y_AXIS] …
    in Endstop Comment by Repetier October 2018
  • You can not delete form the beginning, but the basic theory is correct. We want to add this to our repetier-server which host also can use to print. It will be more a log how far we got so we can restart from last known save point. So in th efuture …
  • The mix of sudo/not sudo surely created some permission problems. The exe do not run it's own and are loaded by mono so I think the x permission is not needed here. Normally you unpack in user directory and run as user then it works. I know it is no…
  • Ok, so you just do direct print from locally stored files like meant for usb sticks etc. Will test that, but I'm not aware of having changed it. Will test anyway just to be sure. No, you should not download another image. Only download a older serv…
  • Do you have compiled marlin with flow control? As I see the startup works the question is why we get no more feedback. Since you updated both it now hard to say whose changes cause the problem. What was the last server version that had no problems?…
  • I'm currently totally confused. What has /home/pi/gcode to to with starting a print. That folder is not used by default. Can you tell exactly which functions on which pages you are using so I know where to look for. I don't think I know which one yo…
  • Recent linux distros have systemd so it gets installed to /lib/systemd/system and not /etc/init.d any more. Only when no systemd is installed it will use the init.d start script.
  • I hope so. I have updated the 1.0.4 dev version. So please test if it now works as expected. Have removed the avr test so all printers now do the test.
    in Endstop Comment by Repetier October 2018
  • That sounds like wrong steps per mm or x/y length. Have a look into eeprom which may have different values then configuration.
  • Makes sense. Motors with TMC2130 have a stallguard so they could detect this and sensor just sees if any filament is loaded at all.
  • No, they are used inside gcode to trigger some actions on the host side instead of being send to printer like add ing a pause.
  • Reading the code I see no real error. So here something to debug. Key files are motion.h and .cpp. Testing is done in Motion.h in checkEndstops. If endstop y is detected here #else  // Multi endstop homing                 if(isYNeg…
    in Endstop Comment by Repetier October 2018
  • Inverting them is not the problem. That code is completely independent. Just to be sure, you have  #define DRIVE_SYSTEM 0at least the video looked you would need that. I ask because end stop handling differs with the printer type and …
    in Endstop Comment by Repetier October 2018
  • You select it in slicer config for infill. If you override settings select it in the dropdown. Requires 2.1.3 to work as gyroid is fairly new.
  • Do you have a normal wlan at home using WPA2? You can look here https://www.repetier-server.com/knowledgebase/wlan-configuration-on-sd-card/ on how to define connection on sd card directly. If it does not work it gets complicated. You need to conne…
  • >  3:04:35.622: echo:  M304 P690.34 I111.47 D1068.83>  3:04:35.622: echo:Filament load/unload lengths:>  3:04:35.622: echo:  M603 L0.00 U100.00>  3:05:18.628: start>  3:05:18.629: echo: External Reset>  3:05:18.629: Marlin TH3D U1.…
  • These are the same flags also used by homing. In fact homing is just a single axis move until endstop is triggered so it sets the test endstop flags even if normally not tested. With this regard a pure y move is like homing since you always test. Ju…
    in Endstop Comment by Repetier October 2018
  • Files in /var/lib are owned by root user. Login using ssh (putty) and stop server (if already installed) and run sudo mkdir /var/lib/Repetier-Server chmod 777 /var/lib/Repetier-Server chown -R pi /var/lib/Repetier-Server after that all files are no…
  • I have looked at it and it looks good. Should have stopped y min move like it did for me. In eeprom only a negative steps per mm value might invalidate the settings. But then homing would also not work I think. So at the moment I have no idea why x …
    in Endstop Comment by Repetier October 2018
  • At the moment there is no merging of server instances. So each server has it's own page. With a beefy pc you might be able to run all, but I do not think that it is clever. If you have that many they will be in use often and when you then need to re…
  • Communication handling has not changed. But it is a upgrade that will recalculate all gcodes locally (time predictions always done locally). Sounds like you have many gcodes so wait for the parsing of them all to be finished before you start first p…
  • Timelapse is a decoupled thread that watches for layer changes. Problem is that printers buffer quite some lines so you never know exactly where the extruder is when you make a snapshot. That is at least the case for the unmodified and undisturbed c…
  • Not sure what you want to say with th elast comment. As far as I see it the plugin is about having extruder at a defined position so object can be seen and it gives a nice timelapse. That this requires a move outside that can reduce quality is corr…
  • No, you want it to limit to 25%. Voltage is sqared in power term so double voltage = 4 x power. You should reduce these #define EXT0_PID_INTEGRAL_DRIVE_MAX 140/** \brief lower value for integral partThe I state should converge to the exact heater o…
  • Also you post in host forum I hope you mean Repetier-Firmware here. It is already implemented, also th efilename is init.g for that.