Browse Source

make LETTTER_OFF return values that match param indices range

pull/1/head
Bob-the-Kuhn 7 years ago
parent
commit
e6e3132f79
  1. 2
      Marlin/gcode.h

2
Marlin/gcode.h

@ -104,7 +104,7 @@ public:
// Index so that 'X' falls on index 24
#define PARAM_IND(N) ((N) >> 3)
#define PARAM_BIT(N) ((N) & 0x7)
#define LETTER_OFF(N) ((N) - 'A' + 1)
#define LETTER_OFF(N) ((N) - 'A')
#define LETTER_IND(N) PARAM_IND(LETTER_OFF(N))
#define LETTER_BIT(N) PARAM_BIT(LETTER_OFF(N))

Loading…
Cancel
Save