Merge pull request #7183 from Bob-the-Kuhn/Fix_LETTER_OFF_in_gcode.h

Fix LETTER_OFF in gcode.h (make LETTTER_OFF return values that match param indices range)
master
Bob-the-Kuhn 7 years ago committed by GitHub
commit 553d5ca283

@ -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