Latest upstream commits
This commit is contained in:
parent
e502144eda
commit
967db181d0
@ -614,9 +614,12 @@ const bool Z_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the logic
|
|||||||
// M502 - reverts to the default "factory settings". You still need to store them in EEPROM afterwards if you want to.
|
// M502 - reverts to the default "factory settings". You still need to store them in EEPROM afterwards if you want to.
|
||||||
//define this to enable EEPROM support
|
//define this to enable EEPROM support
|
||||||
//#define EEPROM_SETTINGS
|
//#define EEPROM_SETTINGS
|
||||||
//to disable EEPROM Serial responses and decrease program space by ~1700 byte: comment this out:
|
|
||||||
// please keep turned on if you can.
|
#ifdef EEPROM_SETTINGS
|
||||||
//#define EEPROM_CHITCHAT
|
// To disable EEPROM Serial responses and decrease program space by ~1700 byte: comment this out:
|
||||||
|
#define EEPROM_CHITCHAT // please keep turned on if you can.
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
|
||||||
|
@ -614,9 +614,11 @@ const bool Z_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the logic
|
|||||||
// M502 - reverts to the default "factory settings". You still need to store them in EEPROM afterwards if you want to.
|
// M502 - reverts to the default "factory settings". You still need to store them in EEPROM afterwards if you want to.
|
||||||
//define this to enable EEPROM support
|
//define this to enable EEPROM support
|
||||||
//#define EEPROM_SETTINGS
|
//#define EEPROM_SETTINGS
|
||||||
//to disable EEPROM Serial responses and decrease program space by ~1700 byte: comment this out:
|
|
||||||
// please keep turned on if you can.
|
#ifdef EEPROM_SETTINGS
|
||||||
//#define EEPROM_CHITCHAT
|
// To disable EEPROM Serial responses and decrease program space by ~1700 byte: comment this out:
|
||||||
|
#define EEPROM_CHITCHAT // please keep turned on if you can.
|
||||||
|
#endif
|
||||||
|
|
||||||
// @section temperature
|
// @section temperature
|
||||||
|
|
||||||
|
@ -397,7 +397,7 @@ window.configuratorApp = (function(){
|
|||||||
* .count number of items in the group
|
* .count number of items in the group
|
||||||
*/
|
*/
|
||||||
refreshDefineGroups: function(cindex) {
|
refreshDefineGroups: function(cindex) {
|
||||||
var findDef = /^(|.*_)(([XYZE](MAX|MIN))|(E[0-3]|[XYZE01234])|MAX|MIN|(bed)?K[pid]|HOTEND|HPB|JAPAN|WESTERN|LEFT|RIGHT|BACK|FRONT|[XYZ]_POINT)(_.*|)$/i;
|
var findDef = /^(|.*_)(([XYZE](MAX|MIN))|(E[0-3]|[XYZE01234])|MAX|MIN|(bed)?K[pid]|HOTEND|HPB|JAPAN|WESTERN|CYRILLIC|LEFT|RIGHT|BACK|FRONT|[XYZ]_POINT)(_.*|)$/i;
|
||||||
var match_prev, patt, title, nameList, groups = {}, match_section;
|
var match_prev, patt, title, nameList, groups = {}, match_section;
|
||||||
$.each(define_list[cindex], function(i, name) {
|
$.each(define_list[cindex], function(i, name) {
|
||||||
if (match_prev) {
|
if (match_prev) {
|
||||||
@ -458,7 +458,8 @@ window.configuratorApp = (function(){
|
|||||||
break;
|
break;
|
||||||
case 'JAPAN':
|
case 'JAPAN':
|
||||||
case 'WESTERN':
|
case 'WESTERN':
|
||||||
patt = '(JAPAN|WESTERN)';
|
case 'CYRILLIC':
|
||||||
|
patt = '(JAPAN|WESTERN|CYRILLIC)';
|
||||||
break;
|
break;
|
||||||
case 'XMIN':
|
case 'XMIN':
|
||||||
case 'XMAX':
|
case 'XMAX':
|
||||||
|
@ -550,9 +550,11 @@ const bool Z_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of
|
|||||||
// M502 - reverts to the default "factory settings". You still need to store them in EEPROM afterwards if you want to.
|
// M502 - reverts to the default "factory settings". You still need to store them in EEPROM afterwards if you want to.
|
||||||
//define this to enable EEPROM support
|
//define this to enable EEPROM support
|
||||||
//#define EEPROM_SETTINGS
|
//#define EEPROM_SETTINGS
|
||||||
//to disable EEPROM Serial responses and decrease program space by ~1700 byte: comment this out:
|
|
||||||
// please keep turned on if you can.
|
#ifdef EEPROM_SETTINGS
|
||||||
//#define EEPROM_CHITCHAT
|
// To disable EEPROM Serial responses and decrease program space by ~1700 byte: comment this out:
|
||||||
|
#define EEPROM_CHITCHAT // please keep turned on if you can.
|
||||||
|
#endif
|
||||||
|
|
||||||
// Preheat Constants
|
// Preheat Constants
|
||||||
#define PLA_PREHEAT_HOTEND_TEMP 180
|
#define PLA_PREHEAT_HOTEND_TEMP 180
|
||||||
|
@ -550,9 +550,11 @@ const bool Z_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of
|
|||||||
// M502 - reverts to the default "factory settings". You still need to store them in EEPROM afterwards if you want to.
|
// M502 - reverts to the default "factory settings". You still need to store them in EEPROM afterwards if you want to.
|
||||||
//define this to enable EEPROM support
|
//define this to enable EEPROM support
|
||||||
//#define EEPROM_SETTINGS
|
//#define EEPROM_SETTINGS
|
||||||
//to disable EEPROM Serial responses and decrease program space by ~1700 byte: comment this out:
|
|
||||||
// please keep turned on if you can.
|
#ifdef EEPROM_SETTINGS
|
||||||
//#define EEPROM_CHITCHAT
|
// To disable EEPROM Serial responses and decrease program space by ~1700 byte: comment this out:
|
||||||
|
#define EEPROM_CHITCHAT // please keep turned on if you can.
|
||||||
|
#endif
|
||||||
|
|
||||||
// Preheat Constants
|
// Preheat Constants
|
||||||
#define PLA_PREHEAT_HOTEND_TEMP 180
|
#define PLA_PREHEAT_HOTEND_TEMP 180
|
||||||
|
@ -572,9 +572,11 @@ const bool Z_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of
|
|||||||
// M502 - reverts to the default "factory settings". You still need to store them in EEPROM afterwards if you want to.
|
// M502 - reverts to the default "factory settings". You still need to store them in EEPROM afterwards if you want to.
|
||||||
//define this to enable EEPROM support
|
//define this to enable EEPROM support
|
||||||
//#define EEPROM_SETTINGS
|
//#define EEPROM_SETTINGS
|
||||||
//to disable EEPROM Serial responses and decrease program space by ~1700 byte: comment this out:
|
|
||||||
// please keep turned on if you can.
|
#ifdef EEPROM_SETTINGS
|
||||||
//#define EEPROM_CHITCHAT
|
// To disable EEPROM Serial responses and decrease program space by ~1700 byte: comment this out:
|
||||||
|
#define EEPROM_CHITCHAT // please keep turned on if you can.
|
||||||
|
#endif
|
||||||
|
|
||||||
// Preheat Constants
|
// Preheat Constants
|
||||||
#define PLA_PREHEAT_HOTEND_TEMP 200
|
#define PLA_PREHEAT_HOTEND_TEMP 200
|
||||||
|
@ -578,9 +578,11 @@ const bool Z_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of
|
|||||||
// M502 - reverts to the default "factory settings". You still need to store them in EEPROM afterwards if you want to.
|
// M502 - reverts to the default "factory settings". You still need to store them in EEPROM afterwards if you want to.
|
||||||
//define this to enable EEPROM support
|
//define this to enable EEPROM support
|
||||||
#define EEPROM_SETTINGS
|
#define EEPROM_SETTINGS
|
||||||
//to disable EEPROM Serial responses and decrease program space by ~1700 byte: comment this out:
|
|
||||||
// please keep turned on if you can.
|
#ifdef EEPROM_SETTINGS
|
||||||
//#define EEPROM_CHITCHAT
|
// To disable EEPROM Serial responses and decrease program space by ~1700 byte: comment this out:
|
||||||
|
#define EEPROM_CHITCHAT // please keep turned on if you can.
|
||||||
|
#endif
|
||||||
|
|
||||||
// Preheat Constants
|
// Preheat Constants
|
||||||
#define PLA_PREHEAT_HOTEND_TEMP 190
|
#define PLA_PREHEAT_HOTEND_TEMP 190
|
||||||
|
@ -601,9 +601,11 @@ const bool Z_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of
|
|||||||
// M502 - reverts to the default "factory settings". You still need to store them in EEPROM afterwards if you want to.
|
// M502 - reverts to the default "factory settings". You still need to store them in EEPROM afterwards if you want to.
|
||||||
//define this to enable EEPROM support
|
//define this to enable EEPROM support
|
||||||
//#define EEPROM_SETTINGS
|
//#define EEPROM_SETTINGS
|
||||||
//to disable EEPROM Serial responses and decrease program space by ~1700 byte: comment this out:
|
|
||||||
// please keep turned on if you can.
|
#ifdef EEPROM_SETTINGS
|
||||||
#define EEPROM_CHITCHAT
|
// To disable EEPROM Serial responses and decrease program space by ~1700 byte: comment this out:
|
||||||
|
#define EEPROM_CHITCHAT // please keep turned on if you can.
|
||||||
|
#endif
|
||||||
|
|
||||||
// Preheat Constants
|
// Preheat Constants
|
||||||
#define PLA_PREHEAT_HOTEND_TEMP 180
|
#define PLA_PREHEAT_HOTEND_TEMP 180
|
||||||
|
@ -571,9 +571,11 @@ const bool Z_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of
|
|||||||
// M502 - reverts to the default "factory settings". You still need to store them in EEPROM afterwards if you want to.
|
// M502 - reverts to the default "factory settings". You still need to store them in EEPROM afterwards if you want to.
|
||||||
//define this to enable EEPROM support
|
//define this to enable EEPROM support
|
||||||
//#define EEPROM_SETTINGS
|
//#define EEPROM_SETTINGS
|
||||||
//to disable EEPROM Serial responses and decrease program space by ~1700 byte: comment this out:
|
|
||||||
// please keep turned on if you can.
|
#ifdef EEPROM_SETTINGS
|
||||||
//#define EEPROM_CHITCHAT
|
// To disable EEPROM Serial responses and decrease program space by ~1700 byte: comment this out:
|
||||||
|
#define EEPROM_CHITCHAT // please keep turned on if you can.
|
||||||
|
#endif
|
||||||
|
|
||||||
// Preheat Constants
|
// Preheat Constants
|
||||||
#define PLA_PREHEAT_HOTEND_TEMP 200
|
#define PLA_PREHEAT_HOTEND_TEMP 200
|
||||||
|
@ -618,9 +618,11 @@ const bool Z_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of
|
|||||||
// M502 - reverts to the default "factory settings". You still need to store them in EEPROM afterwards if you want to.
|
// M502 - reverts to the default "factory settings". You still need to store them in EEPROM afterwards if you want to.
|
||||||
//define this to enable EEPROM support
|
//define this to enable EEPROM support
|
||||||
//#define EEPROM_SETTINGS
|
//#define EEPROM_SETTINGS
|
||||||
//to disable EEPROM Serial responses and decrease program space by ~1700 byte: comment this out:
|
|
||||||
// please keep turned on if you can.
|
#ifdef EEPROM_SETTINGS
|
||||||
//#define EEPROM_CHITCHAT
|
// To disable EEPROM Serial responses and decrease program space by ~1700 byte: comment this out:
|
||||||
|
#define EEPROM_CHITCHAT // please keep turned on if you can.
|
||||||
|
#endif
|
||||||
|
|
||||||
// Preheat Constants
|
// Preheat Constants
|
||||||
#define PLA_PREHEAT_HOTEND_TEMP 180
|
#define PLA_PREHEAT_HOTEND_TEMP 180
|
||||||
|
@ -622,9 +622,11 @@ const bool Z_MAX_ENDSTOP_INVERTING = false; // set to true to invert the logic o
|
|||||||
// M502 - reverts to the default "factory settings". You still need to store them in EEPROM afterwards if you want to.
|
// M502 - reverts to the default "factory settings". You still need to store them in EEPROM afterwards if you want to.
|
||||||
//define this to enable EEPROM support
|
//define this to enable EEPROM support
|
||||||
//#define EEPROM_SETTINGS
|
//#define EEPROM_SETTINGS
|
||||||
//to disable EEPROM Serial responses and decrease program space by ~1700 byte: comment this out:
|
|
||||||
// please keep turned on if you can.
|
#ifdef EEPROM_SETTINGS
|
||||||
//#define EEPROM_CHITCHAT
|
// To disable EEPROM Serial responses and decrease program space by ~1700 byte: comment this out:
|
||||||
|
#define EEPROM_CHITCHAT // please keep turned on if you can.
|
||||||
|
#endif
|
||||||
|
|
||||||
// Preheat Constants
|
// Preheat Constants
|
||||||
#define PLA_PREHEAT_HOTEND_TEMP 180
|
#define PLA_PREHEAT_HOTEND_TEMP 180
|
||||||
|
@ -569,9 +569,11 @@ const bool Z_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of
|
|||||||
// M502 - reverts to the default "factory settings". You still need to store them in EEPROM afterwards if you want to.
|
// M502 - reverts to the default "factory settings". You still need to store them in EEPROM afterwards if you want to.
|
||||||
//define this to enable EEPROM support
|
//define this to enable EEPROM support
|
||||||
#define EEPROM_SETTINGS
|
#define EEPROM_SETTINGS
|
||||||
//to disable EEPROM Serial responses and decrease program space by ~1700 byte: comment this out:
|
|
||||||
// please keep turned on if you can.
|
#ifdef EEPROM_SETTINGS
|
||||||
//#define EEPROM_CHITCHAT
|
// To disable EEPROM Serial responses and decrease program space by ~1700 byte: comment this out:
|
||||||
|
#define EEPROM_CHITCHAT // please keep turned on if you can.
|
||||||
|
#endif
|
||||||
|
|
||||||
// Preheat Constants
|
// Preheat Constants
|
||||||
#define PLA_PREHEAT_HOTEND_TEMP 180
|
#define PLA_PREHEAT_HOTEND_TEMP 180
|
||||||
|
@ -575,9 +575,11 @@ const bool Z_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of
|
|||||||
// M502 - reverts to the default "factory settings". You still need to store them in EEPROM afterwards if you want to.
|
// M502 - reverts to the default "factory settings". You still need to store them in EEPROM afterwards if you want to.
|
||||||
//define this to enable EEPROM support
|
//define this to enable EEPROM support
|
||||||
//#define EEPROM_SETTINGS
|
//#define EEPROM_SETTINGS
|
||||||
//to disable EEPROM Serial responses and decrease program space by ~1700 byte: comment this out:
|
|
||||||
// please keep turned on if you can.
|
#ifdef EEPROM_SETTINGS
|
||||||
//#define EEPROM_CHITCHAT
|
// To disable EEPROM Serial responses and decrease program space by ~1700 byte: comment this out:
|
||||||
|
#define EEPROM_CHITCHAT // please keep turned on if you can.
|
||||||
|
#endif
|
||||||
|
|
||||||
// Preheat Constants
|
// Preheat Constants
|
||||||
#define PLA_PREHEAT_HOTEND_TEMP 180
|
#define PLA_PREHEAT_HOTEND_TEMP 180
|
||||||
|
Loading…
Reference in New Issue
Block a user