1
0
mirror of https://github.com/MarlinFirmware/Marlin.git synced 2024-11-24 20:43:32 +00:00

🚑️ FAST_PWM_FAN default 1KHz base freq. (#23326)

Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
This commit is contained in:
Mike La Spina 2021-12-21 01:26:31 -06:00 committed by GitHub
parent b06f871dd0
commit f374fa0eb8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2668,10 +2668,14 @@
#endif
/**
* FAST PWM FAN Settings
* FAST PWM FAN default PWM frequency
*/
#if ENABLED(FAST_PWM_FAN) && !defined(FAST_PWM_FAN_FREQUENCY)
#define FAST_PWM_FAN_FREQUENCY ((F_CPU) / (2 * 255 * 1)) // Fan frequency default
#if !defined(FAST_PWM_FAN_FREQUENCY) && ENABLED(FAST_PWM_FAN)
#ifdef __AVR__
#define FAST_PWM_FAN_FREQUENCY ((F_CPU) / (2 * 255 * 1))
#else
#define FAST_PWM_FAN_FREQUENCY 1000U
#endif
#endif
/**