Parcourir la source

make LETTTER_OFF return values that match param indices range

Bob-the-Kuhn il y a 7 ans
Parent
révision
e6e3132f79
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1
    1
      Marlin/gcode.h

+ 1
- 1
Marlin/gcode.h Voir le fichier

104
   // Index so that 'X' falls on index 24
104
   // Index so that 'X' falls on index 24
105
   #define PARAM_IND(N)  ((N) >> 3)
105
   #define PARAM_IND(N)  ((N) >> 3)
106
   #define PARAM_BIT(N)  ((N) & 0x7)
106
   #define PARAM_BIT(N)  ((N) & 0x7)
107
-  #define LETTER_OFF(N) ((N) - 'A' + 1)
107
+  #define LETTER_OFF(N) ((N) - 'A')
108
   #define LETTER_IND(N) PARAM_IND(LETTER_OFF(N))
108
   #define LETTER_IND(N) PARAM_IND(LETTER_OFF(N))
109
   #define LETTER_BIT(N) PARAM_BIT(LETTER_OFF(N))
109
   #define LETTER_BIT(N) PARAM_BIT(LETTER_OFF(N))
110
 
110
 

Chargement…
Annuler
Enregistrer