mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-02-19 23:54:19 +00:00
🔧 Move SOFT_PWM_SCALE fallback to cpp (#25800)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
This commit is contained in:
parent
03149b973e
commit
50ad323567
2 changed files with 4 additions and 4 deletions
|
@ -3401,6 +3401,10 @@ void Temperature::isr() {
|
||||||
|
|
||||||
static int8_t temp_count = -1;
|
static int8_t temp_count = -1;
|
||||||
static ADCSensorState adc_sensor_state = StartupDelay;
|
static ADCSensorState adc_sensor_state = StartupDelay;
|
||||||
|
|
||||||
|
#ifndef SOFT_PWM_SCALE
|
||||||
|
#define SOFT_PWM_SCALE 0
|
||||||
|
#endif
|
||||||
static uint8_t pwm_count = _BV(SOFT_PWM_SCALE);
|
static uint8_t pwm_count = _BV(SOFT_PWM_SCALE);
|
||||||
|
|
||||||
// Avoid multiple loads of pwm_count
|
// Avoid multiple loads of pwm_count
|
||||||
|
|
|
@ -41,10 +41,6 @@
|
||||||
#include "../feature/fancheck.h"
|
#include "../feature/fancheck.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef SOFT_PWM_SCALE
|
|
||||||
#define SOFT_PWM_SCALE 0
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define HOTEND_INDEX TERN(HAS_MULTI_HOTEND, e, 0)
|
#define HOTEND_INDEX TERN(HAS_MULTI_HOTEND, e, 0)
|
||||||
#define E_NAME TERN_(HAS_MULTI_HOTEND, e)
|
#define E_NAME TERN_(HAS_MULTI_HOTEND, e)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue