Skip to content

Commit 68a59ef

Browse files
committed
pbio/servo_settings: Relax speed limit for Boost motor.
This motor can go a bit faster than the others. Fixes pybricks/support#1623
1 parent b73e164 commit 68a59ef

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,18 @@
44

55
## [Unreleased]
66

7+
### Changed
8+
9+
- Relaxed speed limit from 1000 deg/s to 1200 deg/s for external Boost
10+
motor ([support#1623]).
11+
712
### Fixed
813
- Fixed persistent data not being deleted when swapping
914
from `3.6.0b1` to `3.5.0` and back to `3.6.0b1` ([support#1846]).
1015
- Fixed controls stopping if `use_gyro` is called again with the same
1116
argument as already active ([support#1858]).
1217

18+
[support#1623]: https://github.com/pybricks/support/issues/1623
1319
[support#1846]: https://github.com/pybricks/support/issues/1846
1420
[support#1858]: https://github.com/pybricks/support/issues/1858
1521

lib/pbio/src/motor/servo_settings.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ static const pbio_servo_settings_reduced_t servo_settings_reduced[] = {
241241
{
242242
.id = PBDRV_LEGODEV_TYPE_ID_INTERACTIVE_MOTOR,
243243
.model = &model_interactive,
244-
.rated_max_speed = 1000,
244+
.rated_max_speed = 1200,
245245
.feedback_gain_low = 45,
246246
.precision_profile = 12,
247247
.pid_kp_low_speed_threshold = 0,

0 commit comments

Comments
 (0)