We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5eb1c07 commit 12f8a81Copy full SHA for 12f8a81
Marlin/src/module/temperature.cpp
@@ -3479,6 +3479,10 @@ void Temperature::isr() {
3479
3480
static int8_t temp_count = -1;
3481
static ADCSensorState adc_sensor_state = StartupDelay;
3482
+
3483
+ #ifndef SOFT_PWM_SCALE
3484
+ #define SOFT_PWM_SCALE 0
3485
+ #endif
3486
static uint8_t pwm_count = _BV(SOFT_PWM_SCALE);
3487
3488
// Avoid multiple loads of pwm_count
Marlin/src/module/temperature.h
@@ -41,10 +41,6 @@
41
#include "../feature/fancheck.h"
42
#endif
43
44
-#ifndef SOFT_PWM_SCALE
45
- #define SOFT_PWM_SCALE 0
46
-#endif
47
-
48
#define HOTEND_INDEX TERN(HAS_MULTI_HOTEND, e, 0)
49
#define E_NAME TERN_(HAS_MULTI_HOTEND, e)
50
0 commit comments