We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03149b9 commit 50ad323Copy full SHA for 50ad323
Marlin/src/module/temperature.cpp
@@ -3401,6 +3401,10 @@ void Temperature::isr() {
3401
3402
static int8_t temp_count = -1;
3403
static ADCSensorState adc_sensor_state = StartupDelay;
3404
+
3405
+ #ifndef SOFT_PWM_SCALE
3406
+ #define SOFT_PWM_SCALE 0
3407
+ #endif
3408
static uint8_t pwm_count = _BV(SOFT_PWM_SCALE);
3409
3410
// 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