Selaa lähdekoodia

Fix some spellings

Scott Lahteine 7 vuotta sitten
vanhempi
commit
93305a2d5e

+ 2
- 2
Marlin/src/HAL/HAL_DUE/fastio_Due.h Näytä tiedosto

@@ -100,7 +100,7 @@
100 100
 /// check if pin is an output
101 101
 #define _GET_OUTPUT(IO)
102 102
 
103
-/// check if pin is an timer
103
+/// check if pin is a timer
104 104
 #define _GET_TIMER(IO)
105 105
 
106 106
 /// Read a pin wrapper
@@ -124,7 +124,7 @@
124 124
 /// check if pin is an output wrapper
125 125
 #define GET_OUTPUT(IO)  _GET_OUTPUT(IO)
126 126
 
127
-/// check if pin is an timer wrapper
127
+/// check if pin is a timer (wrapper)
128 128
 #define GET_TIMER(IO)  _GET_TIMER(IO)
129 129
 
130 130
 // Shorthand

+ 2
- 2
Marlin/src/HAL/HAL_LPC1768/fastio.h Näytä tiedosto

@@ -102,7 +102,7 @@ bool useable_hardware_PWM(pin_t pin);
102 102
 // hg42: we cannot use USEABLE_HARDWARE_PWM because it uses a function that cannot be used statically
103 103
 // hg42: instead use PWM bit from the #define
104 104
 
105
-/// check if pin is an timer
105
+/// check if pin is a timer
106 106
 #define _GET_TIMER(IO)        TRUE  // could be LPC1768_PIN_PWM(IO), but there
107 107
 // hg42: could be this:
108 108
 // #define _GET_TIMER(IO)        LPC1768_PIN_PWM(IO)
@@ -132,7 +132,7 @@ bool useable_hardware_PWM(pin_t pin);
132 132
 /// check if pin is an output wrapper
133 133
 #define GET_OUTPUT(IO)  _GET_OUTPUT(IO)
134 134
 
135
-/// check if pin is an timer wrapper
135
+/// check if pin is a timer (wrapper)
136 136
 #define GET_TIMER(IO)  _GET_TIMER(IO)
137 137
 
138 138
 // Shorthand

+ 3
- 3
Marlin/src/HAL/HAL_STM32F7/TMC2660.h Näytä tiedosto

@@ -205,12 +205,12 @@ class TMC26XStepper {
205 205
      * The more regurlarly you call this function the better. In both senses of 'regularly': Calling it as often as
206 206
      * possible is not a bad idea and if you even manage that the intervals you call this function are not too irregular helps too.
207 207
      *
208
-     * You can call this routine even if you know that the motor is not miving. It introduces just a very small penalty in your code.
208
+     * You can call this routine even if you know that the motor is not moving. It introduces just a very small penalty in your code.
209 209
      * You must not call isMoving() to determine if you need to call this function, since taht is done internally already and only
210 210
      * slows down you code.
211 211
      *
212
-     * How often you call this function directly influences your top miving speed for the motor. It may be a good idea to call this
213
-     * from an timer overflow interrupt to ensure proper calling.
212
+     * How often you call this function directly influences your top moving speed for the motor. It may be a good idea to call this
213
+     * from a timer overflow interrupt to ensure proper calling.
214 214
      * \sa step()
215 215
      */
216 216
     char move(void);

Loading…
Peruuta
Tallenna