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)
This commit is contained in:
Bob-the-Kuhn 2017-06-29 09:07:46 -05:00 committed by GitHub
commit 553d5ca283

View file

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