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
16ad18c4
Commit
16ad18c4
authored
Jan 11, 2016
by
MagoKimbra
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
New name
parent
12c03eb1
Changes
5
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6607 additions
and
3 deletions
+6607
-3
Configuration_Store.cpp
MarlinKimbra/Configuration_Store.cpp
+1013
-0
Configuration_Store.h
MarlinKimbra/Configuration_Store.h
+35
-0
Configuration_Version.h
MarlinKimbra/Configuration_Version.h
+2
-2
Pins.h
MarlinKimbra/Pins.h
+5556
-0
language.h
MarlinKimbra/language/language.h
+1
-1
No files found.
MarlinKimbra/Configuration_Store.cpp
0 → 100644
View file @
16ad18c4
This diff is collapsed.
Click to expand it.
MarlinKimbra/Configuration_Store.h
0 → 100644
View file @
16ad18c4
#ifndef CONFIGURATION_STORE_H
#define CONFIGURATION_STORE_H
#include "base.h"
void
Config_ResetDefault
();
void
ConfigSD_ResetDefault
();
#if DISABLED(DISABLE_M503)
void
Config_PrintSettings
(
bool
forReplay
=
false
);
void
ConfigSD_PrintSettings
(
bool
forReplay
=
false
);
#else
FORCE_INLINE
void
Config_PrintSettings
(
bool
forReplay
=
false
)
{}
FORCE_INLINE
void
ConfigSD_PrintSettings
(
bool
forReplay
=
false
)
{}
#endif
#if ENABLED(EEPROM_SETTINGS)
void
Config_StoreSettings
();
void
Config_RetrieveSettings
();
#else
FORCE_INLINE
void
Config_StoreSettings
()
{}
FORCE_INLINE
void
Config_RetrieveSettings
()
{
Config_ResetDefault
();
Config_PrintSettings
();
}
#endif
#if ENABLED(SDSUPPORT) && ENABLED(SD_SETTINGS)
#define CFG_SD_MAX_KEY_LEN 3+1 // icrease this if you add key name longer than the actual value.
#define CFG_SD_MAX_VALUE_LEN 30+1 // this should be enought for int, long and float if you need to retrive strings increase this carefully
void
ConfigSD_StoreSettings
();
void
ConfigSD_RetrieveSettings
(
bool
addValue
=
false
);
int
ConfigSD_KeyIndex
(
char
*
key
);
#else
FORCE_INLINE
void
ConfigSD_RetrieveSettings
()
{
ConfigSD_ResetDefault
();
}
#endif
#endif //CONFIGURATION_STORE_H
MarlinKimbra/Configuration_Version.h
View file @
16ad18c4
...
...
@@ -2,8 +2,8 @@
#define CONFIGURATION_VERSION_H
#define BUILD_VERSION "MarlinKimbra 4.2.4 dev"
#define SHORT_BUILD_VERSION "4.2.4
dev"
#define SHORT_BUILD_VERSION "4.2.4
_
dev"
#define STRING_DISTRIBUTION_DATE __DATE__ " " __TIME__ // build date and time
// It might also be appropriate to define a location where additional information can be found
#define
SOURCE_COD
E_URL "https://github.com/MagoKimbra/MarlinKimbra"
#define
FIRMWAR
E_URL "https://github.com/MagoKimbra/MarlinKimbra"
#endif
\ No newline at end of file
MarlinKimbra/Pins.h
0 → 100644
View file @
16ad18c4
This diff is collapsed.
Click to expand it.
MarlinKimbra/language/language.h
View file @
16ad18c4
...
...
@@ -83,7 +83,7 @@
#define SERIAL_INVALID_EXTRUDER "Invalid extruder"
#define SERIAL_INVALID_SOLENOID "Invalid solenoid"
#define SERIAL_ERR_NO_THERMISTORS "No thermistors - no temperature"
#define SERIAL_M115_REPORT "FIRMWARE_NAME:MarlinKimbra
" SHORT_BUILD_VERSION " SOURCE_CODE_URL:" SOURCE_COD
E_URL " PROTOCOL_VERSION:" PROTOCOL_VERSION " MACHINE_TYPE:" MACHINE_NAME " EXTRUDER_COUNT:" STRINGIFY(EXTRUDERS) " UUID:" MACHINE_UUID "\n"
#define SERIAL_M115_REPORT "FIRMWARE_NAME:MarlinKimbra
_" SHORT_BUILD_VERSION " FIRMWARE_URL:" FIRMWAR
E_URL " PROTOCOL_VERSION:" PROTOCOL_VERSION " MACHINE_TYPE:" MACHINE_NAME " EXTRUDER_COUNT:" STRINGIFY(EXTRUDERS) " UUID:" MACHINE_UUID "\n"
#define SERIAL_COUNT_X " Count X: "
#define SERIAL_ERR_KILLED "Printer halted. kill() called!"
#define SERIAL_ERR_STOPPED "Printer stopped due to errors. Fix the error and use M999 to restart. (Temperature is reset. Set it after restarting)"
...
...
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