Skip to content

Commit

Permalink
change arm constants in header to match EncoderLine #define in code
Browse files Browse the repository at this point in the history
This should not make any difference unless there is something
buried somewhere that is doing calculations based on the old order

but not being sure how the dats is passed to the UI for calibration
this may be the case.
  • Loading branch information
davidelang committed Nov 15, 2024
1 parent 63cd3a0 commit ab8546d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions FluidNC/src/Maslow/Maslow.h
Original file line number Diff line number Diff line change
Expand Up @@ -236,10 +236,10 @@ class Maslow_ {
unsigned long holdTime = 0;

//variables to use as indexes into various arrays
const char tl = 0;
const char tl = 2;
const char tr = 1;
const char bl = 2;
const char br = 3;
const char bl = 3;
const char br = 0;

// per-arm arrays
float zOffset[4];
Expand Down

0 comments on commit ab8546d

Please sign in to comment.