Skip to content

Commit

Permalink
pbio/servo_settings: Relax speed limit for Boost motor.
Browse files Browse the repository at this point in the history
This motor can go a bit faster than the others.

Fixes pybricks/support#1623
  • Loading branch information
laurensvalk committed Oct 1, 2024
1 parent b73e164 commit 68a59ef
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,18 @@

## [Unreleased]

### Changed

- Relaxed speed limit from 1000 deg/s to 1200 deg/s for external Boost
motor ([support#1623]).

### Fixed
- Fixed persistent data not being deleted when swapping
from `3.6.0b1` to `3.5.0` and back to `3.6.0b1` ([support#1846]).
- Fixed controls stopping if `use_gyro` is called again with the same
argument as already active ([support#1858]).

[support#1623]: https://github.com/pybricks/support/issues/1623
[support#1846]: https://github.com/pybricks/support/issues/1846
[support#1858]: https://github.com/pybricks/support/issues/1858

Expand Down
2 changes: 1 addition & 1 deletion lib/pbio/src/motor/servo_settings.c
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ static const pbio_servo_settings_reduced_t servo_settings_reduced[] = {
{
.id = PBDRV_LEGODEV_TYPE_ID_INTERACTIVE_MOTOR,
.model = &model_interactive,
.rated_max_speed = 1000,
.rated_max_speed = 1200,
.feedback_gain_low = 45,
.precision_profile = 12,
.pid_kp_low_speed_threshold = 0,
Expand Down

0 comments on commit 68a59ef

Please sign in to comment.