Giter Site home page Giter Site logo

Comments (5)

repetier avatar repetier commented on August 16, 2024

Including z-lift in ops is difficult. Had so far no idea how to do it correctly, because I need to break up the move in 3 parts.

If you lose steps in combination with z-moves check jerk-z and reduce it. There was also a case where a jerk didn't get adjusted correctly. Don't know if t was already corrected in the last version or the upcoming, so make sure you have the latest version. The code in question is in Repetier.pde and should look like this:

inline float safeSpeed(PrintLine _p) {
float safe = printer_state.maxJerk_0.5;
if(p->dir & 64) {
if(abs(p->speedZ)>printer_state.maxZJerk_0.5) {
float safe2 = printer_state.maxZJerk_0.5*p->fullSpeed/abs(p->speedZ);
if(safe2<safe) safe = safe2;
}
}
return (safe<p->fullSpeed?safe:p->fullSpeed);
}

With the Host problem, try the newest version 0.51. There the counter problem should be fixed.

from repetier-firmware.

hcross avatar hcross commented on August 16, 2024

The code you mentioned is not in your repository yet. Thanks for your help !

from repetier-firmware.

hcross avatar hcross commented on August 16, 2024

safefullSpeed is not declared in the current version of Repetier.pde ... I need your full version of the file to be uploaded to the repository !

from repetier-firmware.

repetier avatar repetier commented on August 16, 2024

No, it was a problem with github. There was a smaller sign which was interpreted as tag start. Updated the code above that is is now printed correct.

from repetier-firmware.

hcross avatar hcross commented on August 16, 2024

Finally, moving forward or backward the max Z-jerk value does not change anything to my problem... Moreover I lost Y-axis steps while not using the Z-lift option. This was related to my pololu max current config which - for an unknown reason - changed. You can close this issue.

from repetier-firmware.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.