Compare commits
5 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
5d1444295b | ||
|
57fb9a40a0 | ||
|
bf6aab0a93 | ||
|
14e075c5fb | ||
|
62a2ccc849 |
2
.github/lock.yml
vendored
2
.github/lock.yml
vendored
@@ -3,7 +3,7 @@
|
||||
#
|
||||
|
||||
# Number of days of inactivity before a closed issue or pull request is locked
|
||||
daysUntilLock: 60
|
||||
daysUntilLock: 180
|
||||
|
||||
# Skip issues and pull requests created before a given timestamp. Timestamp must
|
||||
# follow ISO 8601 (`YYYY-MM-DD`). Set to `false` to disable
|
||||
|
@@ -595,28 +595,28 @@
|
||||
|
||||
// Below this temperature the heater will be switched off
|
||||
// because it probably indicates a broken thermistor wire.
|
||||
#define HEATER_0_MINTEMP 5
|
||||
#define HEATER_1_MINTEMP 5
|
||||
#define HEATER_2_MINTEMP 5
|
||||
#define HEATER_3_MINTEMP 5
|
||||
#define HEATER_4_MINTEMP 5
|
||||
#define HEATER_5_MINTEMP 5
|
||||
#define HEATER_6_MINTEMP 5
|
||||
#define HEATER_7_MINTEMP 5
|
||||
#define BED_MINTEMP 5
|
||||
#define HEATER_0_MINTEMP 1
|
||||
#define HEATER_1_MINTEMP 1
|
||||
#define HEATER_2_MINTEMP 1
|
||||
#define HEATER_3_MINTEMP 1
|
||||
#define HEATER_4_MINTEMP 1
|
||||
#define HEATER_5_MINTEMP 1
|
||||
#define HEATER_6_MINTEMP 1
|
||||
#define HEATER_7_MINTEMP 1
|
||||
#define BED_MINTEMP 1
|
||||
|
||||
// Above this temperature the heater will be switched off.
|
||||
// This can protect components from overheating, but NOT from shorts and failures.
|
||||
// (Use MINTEMP for thermistor short/failure protection.)
|
||||
#define HEATER_0_MAXTEMP 300
|
||||
#define HEATER_1_MAXTEMP 275
|
||||
#define HEATER_2_MAXTEMP 275
|
||||
#define HEATER_3_MAXTEMP 275
|
||||
#define HEATER_4_MAXTEMP 275
|
||||
#define HEATER_5_MAXTEMP 275
|
||||
#define HEATER_6_MAXTEMP 275
|
||||
#define HEATER_7_MAXTEMP 275
|
||||
#define BED_MAXTEMP 150
|
||||
#define HEATER_0_MAXTEMP 400
|
||||
#define HEATER_1_MAXTEMP 400
|
||||
#define HEATER_2_MAXTEMP 400
|
||||
#define HEATER_3_MAXTEMP 400
|
||||
#define HEATER_4_MAXTEMP 400
|
||||
#define HEATER_5_MAXTEMP 400
|
||||
#define HEATER_6_MAXTEMP 400
|
||||
#define HEATER_7_MAXTEMP 400
|
||||
#define BED_MAXTEMP 180
|
||||
|
||||
//===========================================================================
|
||||
//============================= PID Settings ================================
|
||||
|
@@ -1716,7 +1716,7 @@
|
||||
*
|
||||
* Override the default value based on the driver type set in Configuration.h.
|
||||
*/
|
||||
#define MINIMUM_STEPPER_PULSE 2
|
||||
#define MINIMUM_STEPPER_PULSE 1
|
||||
|
||||
/**
|
||||
* Maximum stepping rate (in Hz) the stepper driver allows
|
||||
|
@@ -41,10 +41,10 @@
|
||||
* here we define this default string as the date where the latest release
|
||||
* version was tagged.
|
||||
*/
|
||||
#define CUSTOM_BUILD_VERSION "1.1.8"
|
||||
#define CUSTOM_BUILD_VERSION "1.1.9"
|
||||
|
||||
#ifndef STRING_DISTRIBUTION_DATE
|
||||
#define STRING_DISTRIBUTION_DATE "2021-01-01"
|
||||
#define STRING_DISTRIBUTION_DATE "2021-01-13"
|
||||
#endif
|
||||
|
||||
/**
|
||||
|
@@ -428,6 +428,11 @@ void AnycubicTouchscreenClass::ParkAfterStop()
|
||||
#endif
|
||||
}
|
||||
|
||||
int AnycubicTouchscreenClass::CodeValueInt()
|
||||
{
|
||||
return (atoi(&TFTcmdbuffer[TFTbufindr][TFTstrchr_pointer - TFTcmdbuffer[TFTbufindr] + 1]));
|
||||
}
|
||||
|
||||
float AnycubicTouchscreenClass::CodeValue()
|
||||
{
|
||||
return (strtod(&TFTcmdbuffer[TFTbufindr][TFTstrchr_pointer - TFTcmdbuffer[TFTbufindr] + 1], NULL));
|
||||
@@ -1806,8 +1811,8 @@ void AnycubicTouchscreenClass::GetCommandFromTFT()
|
||||
else if (CodeSeen('C'))
|
||||
;
|
||||
}
|
||||
HARDWARE_SERIAL_ENTER();
|
||||
break;
|
||||
HARDWARE_SERIAL_ENTER();
|
||||
break;
|
||||
case 33: // A33 get version info
|
||||
{
|
||||
HARDWARE_SERIAL_PROTOCOLPGM("J33 ");
|
||||
|
@@ -252,7 +252,7 @@ private:
|
||||
} OutageData;
|
||||
#endif
|
||||
|
||||
|
||||
int CodeValueInt();
|
||||
float CodeValue();
|
||||
bool CodeSeen(char);
|
||||
void PrintList();
|
||||
@@ -284,6 +284,7 @@ private:
|
||||
char FilamentTestStatus = false;
|
||||
char FilamentTestLastStatus = false;
|
||||
bool FilamentSetMillis = true;
|
||||
int FilamentRunoutCounter = 0;
|
||||
#endif
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user