Open tg73 opened 5 years ago
When I made that patch, the only function being used for filament sensing was the one, but they may have expanded it in recent fw updates. I currently flip all three just in case.
I found two to change, and I think I ended up changing just one. and it's working ok with ZB firmware.
line 19 pat9125.c pat9125_y -= iDY; //negative number, because direction switching does not work//Abe Skelestruder Original // pat9125_y += iDY; //negative number, because direction switching does not work//Abe Skelestruder Added
I didn't make the change, works fine not done.
Line 216 //Abe Skelestruder pat9125_y -= iDY; //negative number, because direction switching does not work pat9125_y += iDY; //negative number, because direction switching does not work //Abe Skelestruder
I flipped this one.
Line 324: pat9125_y -= dy; //negative number, because direction switching does not work // pat9125_y += dy; //negative number, because direction switching does not work //Abe Skelestruder Looks like I kept that one stock as well.
From what I'm running right now, it seems you only need to change the one line ~216.
On Sat, Jan 5, 2019 at 2:00 PM jltx1 notifications@github.com wrote:
When I made that patch, the only function being used for filament sensing was the one, but they may have expanded it in recent fw updates. I currently flip all three just in case.
— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/PrusaOwners/prusaowners/issues/54#issuecomment-451694483, or mute the thread https://github.com/notifications/unsubscribe-auth/AAClkY90wg4ULNhdX-RaWJBku61IGjo8ks5vASCVgaJpZM4ZxqH- .
@jltx1 From what I can tell, there are two functions that need patching:
pat9125_update()
andpat9125_update_y()
. There is alsopat9125_update_y2()
, but this does not appear to be used anywhere. All three functions contain the expressionpat9125_y -= iDY
. The patch only changespat9125_update_y()
. Is this correct?