Skip to content

Commit bb3714d

Browse files
committed
pbio/servo_settings: Unify observer gain across motors.
1 parent 93cdf23 commit bb3714d

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

lib/pbio/src/motor/servo_settings.c

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ static const pbio_servo_settings_reduced_t servo_settings_reduced[] = {
220220
.id = PBIO_IODEV_TYPE_ID_EV3_LARGE_MOTOR,
221221
.model = &model_ev3_l,
222222
.rated_max_speed = 800,
223-
.feedback_gain_low = 40,
223+
.feedback_gain_low = 45,
224224
.precision_profile = 10,
225225
.pid_kp_low_speed_threshold = 0,
226226
},
@@ -230,7 +230,7 @@ static const pbio_servo_settings_reduced_t servo_settings_reduced[] = {
230230
.id = PBIO_IODEV_TYPE_ID_MOVE_HUB_MOTOR,
231231
.model = &model_movehub,
232232
.rated_max_speed = 1500,
233-
.feedback_gain_low = 47,
233+
.feedback_gain_low = 45,
234234
.precision_profile = 20,
235235
.pid_kp_low_speed_threshold = 250,
236236
},
@@ -240,39 +240,39 @@ static const pbio_servo_settings_reduced_t servo_settings_reduced[] = {
240240
.id = PBIO_IODEV_TYPE_ID_INTERACTIVE_MOTOR,
241241
.model = &model_interactive,
242242
.rated_max_speed = 1000,
243-
.feedback_gain_low = 66,
243+
.feedback_gain_low = 45,
244244
.precision_profile = 12,
245245
.pid_kp_low_speed_threshold = 0,
246246
},
247247
{
248248
.id = PBIO_IODEV_TYPE_ID_TECHNIC_L_MOTOR,
249249
.model = &model_technic_l,
250250
.rated_max_speed = 1500,
251-
.feedback_gain_low = 26,
251+
.feedback_gain_low = 45,
252252
.precision_profile = 20,
253253
.pid_kp_low_speed_threshold = 250,
254254
},
255255
{
256256
.id = PBIO_IODEV_TYPE_ID_TECHNIC_XL_MOTOR,
257257
.model = &model_technic_xl,
258258
.rated_max_speed = 1500,
259-
.feedback_gain_low = 38,
259+
.feedback_gain_low = 45,
260260
.precision_profile = 20,
261261
.pid_kp_low_speed_threshold = 250,
262262
},
263263
{
264264
.id = PBIO_IODEV_TYPE_ID_SPIKE_S_MOTOR,
265265
.model = &model_technic_s_angular,
266266
.rated_max_speed = 620,
267-
.feedback_gain_low = 24,
267+
.feedback_gain_low = 30,
268268
.precision_profile = 11,
269269
.pid_kp_low_speed_threshold = 150,
270270
},
271271
{
272272
.id = PBIO_IODEV_TYPE_ID_TECHNIC_L_ANGULAR_MOTOR,
273273
.model = &model_technic_l_angular,
274274
.rated_max_speed = 1000,
275-
.feedback_gain_low = 32,
275+
.feedback_gain_low = 45,
276276
.precision_profile = 11,
277277
.pid_kp_low_speed_threshold = 150,
278278
},

0 commit comments

Comments
 (0)