Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
marlin-anet-a8
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jonas Leder
marlin-anet-a8
Commits
93305a2d
Commit
93305a2d
authored
7 years ago
by
Scott Lahteine
Browse files
Options
Downloads
Patches
Plain Diff
Fix some spellings
parent
adcb87f0
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
Marlin/src/HAL/HAL_DUE/fastio_Due.h
+2
-2
2 additions, 2 deletions
Marlin/src/HAL/HAL_DUE/fastio_Due.h
Marlin/src/HAL/HAL_LPC1768/fastio.h
+2
-2
2 additions, 2 deletions
Marlin/src/HAL/HAL_LPC1768/fastio.h
Marlin/src/HAL/HAL_STM32F7/TMC2660.h
+3
-3
3 additions, 3 deletions
Marlin/src/HAL/HAL_STM32F7/TMC2660.h
with
7 additions
and
7 deletions
Marlin/src/HAL/HAL_DUE/fastio_Due.h
+
2
−
2
View file @
93305a2d
...
@@ -100,7 +100,7 @@
...
@@ -100,7 +100,7 @@
/// check if pin is an output
/// check if pin is an output
#define _GET_OUTPUT(IO)
#define _GET_OUTPUT(IO)
/// check if pin is a
n
timer
/// check if pin is a timer
#define _GET_TIMER(IO)
#define _GET_TIMER(IO)
/// Read a pin wrapper
/// Read a pin wrapper
...
@@ -124,7 +124,7 @@
...
@@ -124,7 +124,7 @@
/// check if pin is an output wrapper
/// check if pin is an output wrapper
#define GET_OUTPUT(IO) _GET_OUTPUT(IO)
#define GET_OUTPUT(IO) _GET_OUTPUT(IO)
/// check if pin is a
n
timer wrapper
/// check if pin is a timer
(
wrapper
)
#define GET_TIMER(IO) _GET_TIMER(IO)
#define GET_TIMER(IO) _GET_TIMER(IO)
// Shorthand
// Shorthand
...
...
This diff is collapsed.
Click to expand it.
Marlin/src/HAL/HAL_LPC1768/fastio.h
+
2
−
2
View file @
93305a2d
...
@@ -102,7 +102,7 @@ bool useable_hardware_PWM(pin_t pin);
...
@@ -102,7 +102,7 @@ bool useable_hardware_PWM(pin_t pin);
// hg42: we cannot use USEABLE_HARDWARE_PWM because it uses a function that cannot be used statically
// hg42: we cannot use USEABLE_HARDWARE_PWM because it uses a function that cannot be used statically
// hg42: instead use PWM bit from the #define
// hg42: instead use PWM bit from the #define
/// check if pin is a
n
timer
/// check if pin is a timer
#define _GET_TIMER(IO) TRUE // could be LPC1768_PIN_PWM(IO), but there
#define _GET_TIMER(IO) TRUE // could be LPC1768_PIN_PWM(IO), but there
// hg42: could be this:
// hg42: could be this:
// #define _GET_TIMER(IO) LPC1768_PIN_PWM(IO)
// #define _GET_TIMER(IO) LPC1768_PIN_PWM(IO)
...
@@ -132,7 +132,7 @@ bool useable_hardware_PWM(pin_t pin);
...
@@ -132,7 +132,7 @@ bool useable_hardware_PWM(pin_t pin);
/// check if pin is an output wrapper
/// check if pin is an output wrapper
#define GET_OUTPUT(IO) _GET_OUTPUT(IO)
#define GET_OUTPUT(IO) _GET_OUTPUT(IO)
/// check if pin is a
n
timer wrapper
/// check if pin is a timer
(
wrapper
)
#define GET_TIMER(IO) _GET_TIMER(IO)
#define GET_TIMER(IO) _GET_TIMER(IO)
// Shorthand
// Shorthand
...
...
This diff is collapsed.
Click to expand it.
Marlin/src/HAL/HAL_STM32F7/TMC2660.h
+
3
−
3
View file @
93305a2d
...
@@ -205,12 +205,12 @@ class TMC26XStepper {
...
@@ -205,12 +205,12 @@ class TMC26XStepper {
* The more regurlarly you call this function the better. In both senses of 'regularly': Calling it as often as
* The more regurlarly you call this function the better. In both senses of 'regularly': Calling it as often as
* possible is not a bad idea and if you even manage that the intervals you call this function are not too irregular helps too.
* possible is not a bad idea and if you even manage that the intervals you call this function are not too irregular helps too.
*
*
* You can call this routine even if you know that the motor is not m
i
ving. It introduces just a very small penalty in your code.
* You can call this routine even if you know that the motor is not m
o
ving. It introduces just a very small penalty in your code.
* You must not call isMoving() to determine if you need to call this function, since taht is done internally already and only
* You must not call isMoving() to determine if you need to call this function, since taht is done internally already and only
* slows down you code.
* slows down you code.
*
*
* How often you call this function directly influences your top m
i
ving speed for the motor. It may be a good idea to call this
* How often you call this function directly influences your top m
o
ving speed for the motor. It may be a good idea to call this
* from a
n
timer overflow interrupt to ensure proper calling.
* from a timer overflow interrupt to ensure proper calling.
* \sa step()
* \sa step()
*/
*/
char
move
(
void
);
char
move
(
void
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment