Browse Source

Fix some spellings

Scott Lahteine 7 years ago
parent
commit
93305a2d5e

+ 2
- 2
Marlin/src/HAL/HAL_DUE/fastio_Due.h View File

100
 /// check if pin is an output
100
 /// check if pin is an output
101
 #define _GET_OUTPUT(IO)
101
 #define _GET_OUTPUT(IO)
102
 
102
 
103
-/// check if pin is an timer
103
+/// check if pin is a timer
104
 #define _GET_TIMER(IO)
104
 #define _GET_TIMER(IO)
105
 
105
 
106
 /// Read a pin wrapper
106
 /// Read a pin wrapper
124
 /// check if pin is an output wrapper
124
 /// check if pin is an output wrapper
125
 #define GET_OUTPUT(IO)  _GET_OUTPUT(IO)
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
 #define GET_TIMER(IO)  _GET_TIMER(IO)
128
 #define GET_TIMER(IO)  _GET_TIMER(IO)
129
 
129
 
130
 // Shorthand
130
 // Shorthand

+ 2
- 2
Marlin/src/HAL/HAL_LPC1768/fastio.h View File

102
 // hg42: we cannot use USEABLE_HARDWARE_PWM because it uses a function that cannot be used statically
102
 // hg42: we cannot use USEABLE_HARDWARE_PWM because it uses a function that cannot be used statically
103
 // hg42: instead use PWM bit from the #define
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
 #define _GET_TIMER(IO)        TRUE  // could be LPC1768_PIN_PWM(IO), but there
106
 #define _GET_TIMER(IO)        TRUE  // could be LPC1768_PIN_PWM(IO), but there
107
 // hg42: could be this:
107
 // hg42: could be this:
108
 // #define _GET_TIMER(IO)        LPC1768_PIN_PWM(IO)
108
 // #define _GET_TIMER(IO)        LPC1768_PIN_PWM(IO)
132
 /// check if pin is an output wrapper
132
 /// check if pin is an output wrapper
133
 #define GET_OUTPUT(IO)  _GET_OUTPUT(IO)
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
 #define GET_TIMER(IO)  _GET_TIMER(IO)
136
 #define GET_TIMER(IO)  _GET_TIMER(IO)
137
 
137
 
138
 // Shorthand
138
 // Shorthand

+ 3
- 3
Marlin/src/HAL/HAL_STM32F7/TMC2660.h View File

205
      * The more regurlarly you call this function the better. In both senses of 'regularly': Calling it as often as
205
      * The more regurlarly you call this function the better. In both senses of 'regularly': Calling it as often as
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.
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
      * You must not call isMoving() to determine if you need to call this function, since taht is done internally already and only
209
      * You must not call isMoving() to determine if you need to call this function, since taht is done internally already and only
210
      * slows down you code.
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
      * \sa step()
214
      * \sa step()
215
      */
215
      */
216
     char move(void);
216
     char move(void);

Loading…
Cancel
Save