You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* 'bugfix-2.1.x' of https://github.com/MarlinFirmware/Marlin: (252 commits)
🐛 Fix Anet ET4 SD_SS_PIN (MarlinFirmware#25492)
[cron] Bump distribution date (2023-03-11)
✨ BTT Octopus Max EZ 1.0, SKR 3.0 / 3.0 EZ (MarlinFirmware#25387)
[cron] Bump distribution date (2023-03-10)
✨ Z_SAFE_HOMING_POINT_ABSOLUTE (MarlinFirmware#23069)
[cron] Bump distribution date (2023-03-09)
🔨 VSCode + Devcontainer support (MarlinFirmware#22420)
🔧 Update some config.ini options
✨ Extra Z Servo Probe options (MarlinFirmware#21427)
[cron] Bump distribution date (2023-03-08)
🔧 Add DGUS_LCD_UI RELOADED conditions
🌐 DGUS Reloaded non-accented French (MarlinFirmware#25443)
[cron] Bump distribution date (2023-03-07)
🌐 Update Turkish language
🧑💻 Script to make non-accented languages
[cron] Bump distribution date (2023-03-06)
🌐 Update Turkish language (MarlinFirmware#25447)
🐛 Fix Flash EEPROM for STM32G0B1CB (MarlinFirmware#25469)
🐛 Fix apply_power for SPINDLE_SERVO (MarlinFirmware#25465)
[cron] Bump distribution date (2023-03-05)
...
Signed-off-by: Nick Snyder <nick@nicksnyder.is>
# Conflicts:
# config/ncksnydr/narungol/2.1/Configuration_adv.h
Copy file name to clipboardexpand all lines: .github/workflows/check-pr.yml
+1-1
Original file line number
Diff line number
Diff line change
@@ -29,6 +29,6 @@ jobs:
29
29
30
30
Please redo this PR starting with the `bugfix-2.1.x` branch and be careful to target `bugfix-2.1.x` when resubmitting the PR. Patches may also target `bugfix-2.0.x` if they are specifically for 2.0.9.x.
31
31
32
-
It may help to set your fork's default branch to `bugfix-2.0.x`.
32
+
It may help to set your fork's default branch to `bugfix-2.1.x`.
33
33
34
34
See [this page](https://marlinfw.org/docs/development/getting_started_pull_requests.html) for full instructions.
#definePWM_CHK_MOTOR_CURRENT(P) (P == MOTOR_CURRENT_PWM_E || P == MOTOR_CURRENT_PWM_E0 || P == MOTOR_CURRENT_PWM_E1 || P == MOTOR_CURRENT_PWM_Z || P == MOTOR_CURRENT_PWM_XY)
296
+
#definePWM_CHK_MOTOR_CURRENT(P) (P == MOTOR_CURRENT_PWM_E_PIN || P == MOTOR_CURRENT_PWM_E0_PIN || P == MOTOR_CURRENT_PWM_E1_PIN || P == MOTOR_CURRENT_PWM_Z_PIN || P == MOTOR_CURRENT_PWM_XY_PIN)
297
297
#elifPIN_EXISTS(MOTOR_CURRENT_PWM_Z)
298
-
#definePWM_CHK_MOTOR_CURRENT(P) (P == MOTOR_CURRENT_PWM_E || P == MOTOR_CURRENT_PWM_E0 || P == MOTOR_CURRENT_PWM_E1 || P == MOTOR_CURRENT_PWM_Z)
298
+
#definePWM_CHK_MOTOR_CURRENT(P) (P == MOTOR_CURRENT_PWM_E_PIN || P == MOTOR_CURRENT_PWM_E0_PIN || P == MOTOR_CURRENT_PWM_E1_PIN || P == MOTOR_CURRENT_PWM_Z_PIN)
299
299
#else
300
-
#definePWM_CHK_MOTOR_CURRENT(P) (P == MOTOR_CURRENT_PWM_E || P == MOTOR_CURRENT_PWM_E0 || P == MOTOR_CURRENT_PWM_E1)
300
+
#definePWM_CHK_MOTOR_CURRENT(P) (P == MOTOR_CURRENT_PWM_E_PIN || P == MOTOR_CURRENT_PWM_E0_PIN || P == MOTOR_CURRENT_PWM_E1_PIN)
0 commit comments