Skip to content

Commit 47a8ea3

Browse files
Update - fix PID test error, group dependabot
1 parent a4ed045 commit 47a8ea3

File tree

3 files changed

+23
-18
lines changed

3 files changed

+23
-18
lines changed

.github/dependabot.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,8 @@ updates:
88
target-branch: '2025-December'
99
commit-message:
1010
prefix: 'Update - GH Actions'
11+
12+
groups:
13+
github-actions-all:
14+
patterns:
15+
- '*'

configurations/Andrew427/Configuration-MP.h

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -726,13 +726,13 @@
726726
#if ENABLED(PID_PARAMS_PER_HOTEND)
727727
// Specify up to one value per hotend here, according to your setup.
728728
// If there are fewer values, the last one applies to the remaining hotends.
729-
#define DEFAULT_Kp_LIST { 22.20, 22.20 }
730-
#define DEFAULT_Ki_LIST { 1.08, 1.08 }
731-
#define DEFAULT_Kd_LIST { 114.00, 114.00 }
729+
#define DEFAULT_KP_LIST { 22.20, 22.20 }
730+
#define DEFAULT_KI_LIST { 1.08, 1.08 }
731+
#define DEFAULT_KD_LIST { 114.00, 114.00 }
732732
#else
733-
#define DEFAULT_Kp 23.24
734-
#define DEFAULT_Ki 2.22
735-
#define DEFAULT_Kd 60.88
733+
#define DEFAULT_KP 23.24
734+
#define DEFAULT_KI 2.22
735+
#define DEFAULT_KD 60.88
736736
#endif
737737
#else
738738
#define BANG_MAX 255 // Limit hotend current while in bang-bang mode; 255=full current
@@ -831,9 +831,9 @@
831831
// 120V 250W silicone heater into 4mm borosilicate (MendelMax 1.5+)
832832
// from FOPDT model - kp=.39 Tp=405 Tdead=66, Tc set to 79.2, aggressive factor of .15 (vs .1, 1, 10)
833833
// Aquila old: P-128.06, I-24.95, D-438.07
834-
#define DEFAULT_bedKp 172.77
835-
#define DEFAULT_bedKi 13.33
836-
#define DEFAULT_bedKd 1492.74
834+
#define DEFAULT_BED_KP 172.77
835+
#define DEFAULT_BED_KI 13.33
836+
#define DEFAULT_BED_KD 1492.74
837837

838838
// FIND YOUR OWN: "M303 E-1 C8 S90" to run autotune on the bed at 90 degreesC for 8 cycles.
839839
#else

configurations/Andrew427/Configuration.h

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -725,13 +725,13 @@
725725
#if ENABLED(PID_PARAMS_PER_HOTEND)
726726
// Specify up to one value per hotend here, according to your setup.
727727
// If there are fewer values, the last one applies to the remaining hotends.
728-
#define DEFAULT_Kp_LIST { 22.20, 22.20 }
729-
#define DEFAULT_Ki_LIST { 1.08, 1.08 }
730-
#define DEFAULT_Kd_LIST { 114.00, 114.00 }
728+
#define DEFAULT_KP_LIST { 22.20, 22.20 }
729+
#define DEFAULT_KI_LIST { 1.08, 1.08 }
730+
#define DEFAULT_KD_LIST { 114.00, 114.00 }
731731
#else
732-
#define DEFAULT_Kp 23.24
733-
#define DEFAULT_Ki 2.22
734-
#define DEFAULT_Kd 60.88
732+
#define DEFAULT_KP 23.24
733+
#define DEFAULT_KI 2.22
734+
#define DEFAULT_KD 60.88
735735
#endif
736736
#else
737737
#define BANG_MAX 255 // Limit hotend current while in bang-bang mode; 255=full current
@@ -830,9 +830,9 @@
830830
// 120V 250W silicone heater into 4mm borosilicate (MendelMax 1.5+)
831831
// from FOPDT model - kp=.39 Tp=405 Tdead=66, Tc set to 79.2, aggressive factor of .15 (vs .1, 1, 10)
832832
// Aquila old: P-128.06, I-24.95, D-438.07
833-
#define DEFAULT_bedKp 172.77
834-
#define DEFAULT_bedKi 13.33
835-
#define DEFAULT_bedKd 1492.74
833+
#define DEFAULT_BED_KP 172.77
834+
#define DEFAULT_BED_KI 13.33
835+
#define DEFAULT_BED_KD 1492.74
836836

837837
// FIND YOUR OWN: "M303 E-1 C8 S90" to run autotune on the bed at 90 degreesC for 8 cycles.
838838
#else

0 commit comments

Comments
 (0)