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
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jonas Leder
marlin-anet-a8
Commits
c8186e94
Commit
c8186e94
authored
Jun 22, 2016
by
Scott Lahteine
Committed by
GitHub
Jun 22, 2016
Browse files
Options
Downloads
Plain Diff
Merge pull request #4109 from esenapaj/Enclose-#error-string-by-double-quotes
Enclose #error string by double-quotes
parents
d8dcc4ac
14b661b9
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
Marlin/SanityCheck.h
+7
-7
7 additions, 7 deletions
Marlin/SanityCheck.h
with
7 additions
and
7 deletions
Marlin/SanityCheck.h
+
7
−
7
View file @
c8186e94
...
...
@@ -45,11 +45,11 @@
* will force a minimum config file revision, otherwise Marlin will not build.
*/
#if ! defined(CONFIGURATION_H_VERSION) || CONFIGURATION_H_VERSION < REQUIRED_CONFIGURATION_H_VERSION
#error You are using an old Configuration.h file, update it before building Marlin.
#error
"
You are using an old Configuration.h file, update it before building Marlin.
"
#endif
#if ! defined(CONFIGURATION_ADV_H_VERSION) || CONFIGURATION_ADV_H_VERSION < REQUIRED_CONFIGURATION_ADV_H_VERSION
#error You are using an old Configuration_adv.h file, update it before building Marlin.
#error
"
You are using an old Configuration_adv.h file, update it before building Marlin.
"
#endif
/**
...
...
@@ -146,7 +146,7 @@
* Individual axis homing is useless for DELTAS
*/
#if ENABLED(INDIVIDUAL_AXIS_HOMING_MENU) && ENABLED(DELTA)
#error INDIVIDUAL_AXIS_HOMING_MENU is incompatible with DELTA kinematics.
#error
"
INDIVIDUAL_AXIS_HOMING_MENU is incompatible with DELTA kinematics.
"
#endif
/**
...
...
@@ -371,7 +371,7 @@
* Advance Extrusion
*/
#if ENABLED(ADVANCE) && ENABLED(LIN_ADVANCE)
#error You can enable ADVANCE or LIN_ADVANCE, but not both.
#error
"
You can enable ADVANCE or LIN_ADVANCE, but not both.
"
#endif
/**
...
...
@@ -545,15 +545,15 @@
*/
#if EXTRUDERS > 3
#if !PIN_EXISTS(E3_STEP) || !PIN_EXISTS(E3_DIR) || !PIN_EXISTS(E3_ENABLE)
#error E3_STEP_PIN, E3_DIR_PIN, or E3_ENABLE_PIN not defined for this board.
#error
"
E3_STEP_PIN, E3_DIR_PIN, or E3_ENABLE_PIN not defined for this board.
"
#endif
#elif EXTRUDERS > 2
#if !PIN_EXISTS(E2_STEP) || !PIN_EXISTS(E2_DIR) || !PIN_EXISTS(E2_ENABLE)
#error E2_STEP_PIN, E2_DIR_PIN, or E2_ENABLE_PIN not defined for this board.
#error
"
E2_STEP_PIN, E2_DIR_PIN, or E2_ENABLE_PIN not defined for this board.
"
#endif
#elif EXTRUDERS > 1
#if !PIN_EXISTS(E1_STEP) || !PIN_EXISTS(E1_DIR) || !PIN_EXISTS(E1_ENABLE)
#error E1_STEP_PIN, E1_DIR_PIN, or E1_ENABLE_PIN not defined for this board.
#error
"
E1_STEP_PIN, E1_DIR_PIN, or E1_ENABLE_PIN not defined for this board.
"
#endif
#endif
...
...
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