Browse Source

🐛 Fix MKS TinyBee compile (#24454)

FB4S_WIFI
Eduard Sukharev 2 years ago
committed by Scott Lahteine
parent
commit
893707711e
  1. 4
      Marlin/src/HAL/ESP32/HAL.h

4
Marlin/src/HAL/ESP32/HAL.h

@ -60,8 +60,8 @@
#endif
#endif
#define CRITICAL_SECTION_START() portENTER_CRITICAL(&spinlock)
#define CRITICAL_SECTION_END() portEXIT_CRITICAL(&spinlock)
#define CRITICAL_SECTION_START() portENTER_CRITICAL(&hal.spinlock)
#define CRITICAL_SECTION_END() portEXIT_CRITICAL(&hal.spinlock)
#define HAL_CAN_SET_PWM_FREQ // This HAL supports PWM Frequency adjustment
#define PWM_FREQUENCY 1000u // Default PWM frequency when set_pwm_duty() is called without set_pwm_frequency()

Loading…
Cancel
Save