JDS598

About

Username
JDS598
Joined
Visits
2
Last Active
Roles
Member

Comments

  • Trying g28 x0 m84 g28 y0 m84 didn't seem to stop the issue. The homing would still stop sometimes when Y started to home. I think I figured it out. The RETEST_REDUCTION_FACTOR needs to be set to 1 for both X and Y to keep the same speed for the sec…
  • "Then setting rehome distance to 0 disables second check. But I do not think that solves the issue. The back move does not test end stop but when switching to y and the diag pin is still triggered it will stop y move directly. Guess that is what you…
  • Wow I feel dumb, I was changing back on home in vscode not realizing it wasn't updating in the eeprom. so that was an easy fix. The delay in the second example seems to help somewhat but its spotty. I tried up to a 2500ms delay and it was hit or mis…
  • The second is the one that adds a delay between each axis homing so that works but I can't get the x axis to back off when it finishes homing before y starts to home. I think that is keeping the motor in a stall state and triggering the y endstop im…
  • So one more question. Is there a way to add a delay between each axis homing? I am finding that with the way sensorless homing works there needs to be a delay between when x finishes homing and y starts to home to give the drivers a second to stop s…
  • Awesome, thanks again for taking the time to help. If you would like, when I get my printer config complete and tested I would be willing to send you the configuration.h and configuration_io.h files to use as a sample system for a corexy with DUE an…
  • It works!!! I can confirm that the code you gave me enables sensorless homing with tmc2209 drivers, and its working with them on both X and Y. I don't know if you want to put this in the code without testing yourself but it is working for me. Thanks…
  • I found this in marlin firmware  tmc_util.cpp It seems like the same sort of set up where it enables and disables stallguard for homing. I included what they are using for tmc2130 to show that it is more or less the same as repetier has in stepper.c…
  • I can understand not having time, I do appreciate the help you have given me.I have very little experience with code other then very basic. If I am understanding you correctly basically what happens just before homing and just after homing needs to …
  • I tried defining false for stealth and had no change. I have wires going from diag1 to the endstop for each driver. How do I set a minimum speed for it to trigger? Is that with this define   #define TMC2130_TCOOLTHRS_X 1048575 I saw that in anothe…
  • If anyone has a setup working with sensorless homing could you share your configuration and configuration_io files. Thanks in advance.
  • Well I've got the uart connection working, I can read state with m122 and they change when I change parameters, and i can now control X Y and Z motors. I am having trouble getting sensorless homing to work.  This is what I have setup up for endstop…
  • So what you are saying is I need to connect tx3 from DUE to rx on 2209 and rx3 from DUE to tx on 2209? I think I was getting it wrong because reading about marlin it can handle uart over just one wire.  I tried m122 and microsteps do not change so …
  • So I figured out my problem with serial I think. Serial 3 needed a capitol S, after I did that the error went away. the problem I am having now is that when I try to home or move the motors the X and Y motors just kind of click and don't move while …
  • So I set up the X and Y drivers for the 2209's and I am getting this error Compiling .pio\build\due\src\SdFat\src\FatLib\FatFile.cpp.oIn file included from src\io/redefine.h:62:0,                 from src\Configuration.cpp:35:src/Configuration_io.h…
  • I am using an arduino due with a ramps fd v2. It looks like D14 and D15 are TX3 and RX3, would both have to connect to the driver? And then set serial to 3 I am assuming. What do you mean by send the info to the driver library? How do I do that…
  • So I think I figured it out. The file I downloaded was on github from absolute catalyst, I managed to find your github and now it will build at least before modifying anything. What's weird is when I search repetier v2 the wrong github page comes up.
  • There appear to be two selections for DUE in the bottom left of the screen near the build and upload selections, they are env:dueUSB an envDUE.  I have tried setting both and the same errors occurs.  Do I have to set it for DUE somewhere else?