Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
M
MarlinKimbra
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
machinery
MarlinKimbra
Commits
b3b1118d
Commit
b3b1118d
authored
Aug 24, 2015
by
Simone Primarosa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update 4.2.0 dev
parent
197ec612
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
74 additions
and
2 deletions
+74
-2
changelog.md
Documentation/changelog.md
+1
-1
sanitycheck.h
MarlinKimbra/sanitycheck.h
+72
-0
README.md
README.md
+1
-1
No files found.
Documentation/changelog.md
View file @
b3b1118d
### Version
5.0
.0
### Version
4.2
.0
*
New configuration systems (Now you can create a separate file with all configuration and use it in you FW update)
*
New namings for file
*
Added more documentation inside configuration file
...
...
MarlinKimbra/sanitycheck.h
View file @
b3b1118d
...
...
@@ -1592,6 +1592,78 @@
#error CONFLICT ERROR: CHDK and PHOTOGRAPH are incompatible.
#endif
#if !PIN_EXISTS(X_STEP)
#error DEPENDENCY ERROR: X_STEP_PIN is not defined for your board. You have to define it yourself.
#endif
#if !PIN_EXISTS(X_DIR)
#error DEPENDENCY ERROR: X_DIR_PIN is not defined for your board. You have to define it yourself.
#endif
#if !PIN_EXISTS(X_ENABLE)
#error DEPENDENCY ERROR: X_ENABLE_PIN is not defined for your board. You have to define it yourself.
#endif
#if !PIN_EXISTS(Y_STEP)
#error DEPENDENCY ERROR: Y_STEP_PIN is not defined for your board. You have to define it yourself.
#endif
#if !PIN_EXISTS(Y_DIR)
#error DEPENDENCY ERROR: Y_DIR_PIN is not defined for your board. You have to define it yourself.
#endif
#if !PIN_EXISTS(Y_ENABLE)
#error DEPENDENCY ERROR: Y_ENABLE_PIN is not defined for your board. You have to define it yourself.
#endif
#if !PIN_EXISTS(Z_STEP)
#error DEPENDENCY ERROR: Z_STEP_PIN is not defined for your board. You have to define it yourself.
#endif
#if !PIN_EXISTS(Z_DIR)
#error DEPENDENCY ERROR: Z_DIR_PIN is not defined for your board. You have to define it yourself.
#endif
#if !PIN_EXISTS(Z_ENABLE)
#error DEPENDENCY ERROR: Z_ENABLE_PIN is not defined for your board. You have to define it yourself.
#endif
#if DRIVER_EXTRUDERS > 0
#if !PIN_EXISTS(E0_STEP)
#error DEPENDENCY ERROR: E0_STEP_PIN is not defined for your board. You have to define it yourself.
#endif
#if !PIN_EXISTS(E0_DIR)
#error DEPENDENCY ERROR: E0_DIR_PIN is not defined for your board. You have to define it yourself.
#endif
#if !PIN_EXISTS(E0_ENABLE)
#error DEPENDENCY ERROR: E0_ENABLE_PIN is not defined for your board. You have to define it yourself.
#endif
#if DRIVER_EXTRUDERS > 1
#if !PIN_EXISTS(E1_STEP)
#error DEPENDENCY ERROR: E1_STEP_PIN is not defined for your board. You have to define it yourself.
#endif
#if !PIN_EXISTS(E1_DIR)
#error DEPENDENCY ERROR: E1_DIR_PIN is not defined for your board. You have to define it yourself.
#endif
#if !PIN_EXISTS(E1_ENABLE)
#error DEPENDENCY ERROR: E1_ENABLE_PIN is not defined for your board. You have to define it yourself.
#endif
#if DRIVER_EXTRUDERS > 2
#if !PIN_EXISTS(E2_STEP)
#error DEPENDENCY ERROR: E2_STEP_PIN is not defined for your board. You have to define it yourself.
#endif
#if !PIN_EXISTS(E2_DIR)
#error DEPENDENCY ERROR: E2_DIR_PIN is not defined for your board. You have to define it yourself.
#endif
#if !PIN_EXISTS(E2_ENABLE)
#error DEPENDENCY ERROR: E2_ENABLE_PIN is not defined for your board. You have to define it yourself.
#endif
#if DRIVER_EXTRUDERS > 3
#if !PIN_EXISTS(E3_STEP)
#error DEPENDENCY ERROR: E3_STEP_PIN is not defined for your board. You have to define it yourself.
#endif
#if !PIN_EXISTS(E3_DIR)
#error DEPENDENCY ERROR: E3_DIR_PIN is not defined for your board. You have to define it yourself.
#endif
#if !PIN_EXISTS(E3_ENABLE)
#error DEPENDENCY ERROR: E3_ENABLE_PIN is not defined for your board. You have to define it yourself.
#endif
#endif
#endif
#endif
#endif
#if ENABLED(MKR4)
#if (EXTRUDERS == 2) && (DRIVER_EXTRUDERS == 1) && !PIN_EXISTS(E0E1_CHOICE)
...
...
README.md
View file @
b3b1118d
<img
align=
"right"
src=
"Documentation/Logo/MarlinKimbra%20Logo%20GitHub.png"
/>
# MarlinKimbra 3D Printer Firmware
## Version
5.0
.0 dev
## Version
4.2
.0 dev
*
[
Configuration & Compilation
](
/Documentation/Compilation.md
)
*
Supported
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment