motor-python 0.0.8__tar.gz → 0.0.10__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {motor_python-0.0.8 → motor_python-0.0.10}/PKG-INFO +3 -3
- {motor_python-0.0.8 → motor_python-0.0.10}/README.md +2 -2
- {motor_python-0.0.8 → motor_python-0.0.10}/pyproject.toml +1 -1
- {motor_python-0.0.8 → motor_python-0.0.10}/src/motor_python/__init__.py +1 -1
- {motor_python-0.0.8 → motor_python-0.0.10}/src/motor_python/cube_mars_motor_can.py +56 -10
- {motor_python-0.0.8 → motor_python-0.0.10}/.gitignore +0 -0
- {motor_python-0.0.8 → motor_python-0.0.10}/LICENSE +0 -0
- {motor_python-0.0.8 → motor_python-0.0.10}/scripts/README.md +0 -0
- {motor_python-0.0.8 → motor_python-0.0.10}/src/motor_python/__main__.py +0 -0
- {motor_python-0.0.8 → motor_python-0.0.10}/src/motor_python/base_motor.py +0 -0
- {motor_python-0.0.8 → motor_python-0.0.10}/src/motor_python/can_protocol.py +0 -0
- {motor_python-0.0.8 → motor_python-0.0.10}/src/motor_python/can_utils.py +0 -0
- {motor_python-0.0.8 → motor_python-0.0.10}/src/motor_python/cube_mars_motor.py +0 -0
- {motor_python-0.0.8 → motor_python-0.0.10}/src/motor_python/definitions.py +0 -0
- {motor_python-0.0.8 → motor_python-0.0.10}/src/motor_python/examples.py +0 -0
- {motor_python-0.0.8 → motor_python-0.0.10}/src/motor_python/examples_can.py +0 -0
- {motor_python-0.0.8 → motor_python-0.0.10}/src/motor_python/motor_control_using_pid.py +0 -0
- {motor_python-0.0.8 → motor_python-0.0.10}/src/motor_python/motor_manager.py +0 -0
- {motor_python-0.0.8 → motor_python-0.0.10}/src/motor_python/motor_status_parser.py +0 -0
- {motor_python-0.0.8 → motor_python-0.0.10}/src/motor_python/pid_controller.py +0 -0
- {motor_python-0.0.8 → motor_python-0.0.10}/src/motor_python/second_order_low_pass_filter.py +0 -0
- {motor_python-0.0.8 → motor_python-0.0.10}/src/motor_python/utils.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.5
|
|
2
2
|
Name: motor_python
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.10
|
|
4
4
|
Summary: CubeMars motor module for Aries exosuits.
|
|
5
5
|
Project-URL: homepage, https://github.com/TUM-Aries-Lab/motor-module
|
|
6
6
|
Author-email: Tsmorz <tony.smoragiewicz@tum.de>, Hannes Nguyen <hannes.nguyen@tum.de>
|
|
@@ -149,10 +149,10 @@ from motor_python.cube_mars_motor import CubeMarsAK606v3
|
|
|
149
149
|
| Method | Purpose |
|
|
150
150
|
| --- | --- |
|
|
151
151
|
| `set_position(position_degrees)` | MIT-backed position command |
|
|
152
|
-
| `set_velocity(velocity_erpm
|
|
152
|
+
| `set_velocity(velocity_erpm)` | MIT-backed velocity command. Zero releases the motor via `stop()` |
|
|
153
153
|
| `set_current(current_amps)` | Interpreted as MIT torque feedforward |
|
|
154
154
|
| `set_mit_mode(pos_rad, vel_rad_s, kp, kd, torque_ff_nm)` | Direct MIT command |
|
|
155
|
-
| `stop()` | Neutral MIT command
|
|
155
|
+
| `stop()` | Neutral MIT command, disable MIT mode, release the motor |
|
|
156
156
|
|
|
157
157
|
## Useful Bench Scripts
|
|
158
158
|
|
|
@@ -135,10 +135,10 @@ from motor_python.cube_mars_motor import CubeMarsAK606v3
|
|
|
135
135
|
| Method | Purpose |
|
|
136
136
|
| --- | --- |
|
|
137
137
|
| `set_position(position_degrees)` | MIT-backed position command |
|
|
138
|
-
| `set_velocity(velocity_erpm
|
|
138
|
+
| `set_velocity(velocity_erpm)` | MIT-backed velocity command. Zero releases the motor via `stop()` |
|
|
139
139
|
| `set_current(current_amps)` | Interpreted as MIT torque feedforward |
|
|
140
140
|
| `set_mit_mode(pos_rad, vel_rad_s, kp, kd, torque_ff_nm)` | Direct MIT command |
|
|
141
|
-
| `stop()` | Neutral MIT command
|
|
141
|
+
| `stop()` | Neutral MIT command, disable MIT mode, release the motor |
|
|
142
142
|
|
|
143
143
|
## Useful Bench Scripts
|
|
144
144
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "motor_python"
|
|
3
|
-
version = "0.0.
|
|
3
|
+
version = "0.0.10"
|
|
4
4
|
description = "CubeMars motor module for Aries exosuits."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
authors = [{ name = "Tsmorz", email = "tony.smoragiewicz@tum.de"},{ name = "Hannes Nguyen", email = "hannes.nguyen@tum.de" }]
|
|
@@ -1282,10 +1282,17 @@ class CubeMarsBaseCAN(BaseMotor):
|
|
|
1282
1282
|
return None
|
|
1283
1283
|
|
|
1284
1284
|
def send_neutral_command(self) -> None:
|
|
1285
|
-
"""
|
|
1285
|
+
"""Send the enter-motor-mode frame.
|
|
1286
1286
|
|
|
1287
|
-
|
|
1288
|
-
|
|
1287
|
+
The name and the docstring this replaced were both wrong -- it was
|
|
1288
|
+
described as returning telemetry, copied from get_status(). What it
|
|
1289
|
+
sends is FF..FC, the MIT enter-motor-mode helper, which is why calling
|
|
1290
|
+
it was the difference between a motor that produced torque and one
|
|
1291
|
+
that accepted every command and produced none.
|
|
1292
|
+
|
|
1293
|
+
Nothing here is neutral. Prefer enable_mit_mode(), which sends the
|
|
1294
|
+
same frame and reports whether the motor answered; this remains for
|
|
1295
|
+
callers that want the frame alone.
|
|
1289
1296
|
"""
|
|
1290
1297
|
if not self.connected:
|
|
1291
1298
|
return
|
|
@@ -1412,13 +1419,13 @@ class CubeMarsBaseCAN(BaseMotor):
|
|
|
1412
1419
|
|
|
1413
1420
|
self._mit_enabled = False
|
|
1414
1421
|
neutral = self._mit_neutral_payload()
|
|
1415
|
-
feedback_before = self._last_feedback_monotonic
|
|
1416
|
-
sent = self._send_mit_payload(neutral, capture_response=True)
|
|
1417
|
-
if sent and self._last_feedback_monotonic > feedback_before:
|
|
1418
|
-
self._mit_enabled = True
|
|
1419
|
-
logger.info("MIT mode ready via direct MIT command handshake")
|
|
1420
|
-
return
|
|
1421
1422
|
|
|
1423
|
+
# The helper frame is what actually enters motor mode. It is sent
|
|
1424
|
+
# first, not as a fallback, because fresh feedback cannot tell an
|
|
1425
|
+
# enabled motor from a disabled one: the motor answers an MIT-format
|
|
1426
|
+
# frame either way. Concluding from that alone reported success
|
|
1427
|
+
# against a motor that then produced no torque -- commands accepted,
|
|
1428
|
+
# position and speed reported, torque frozen at one value.
|
|
1422
1429
|
helper_frames: list[tuple[str, bytes]] = []
|
|
1423
1430
|
if self._helper_policy in {"fcfd", "legacy"}:
|
|
1424
1431
|
helper_frames.append(("FF..FC", self._CAN_HELPER_ENABLE))
|
|
@@ -1427,10 +1434,14 @@ class CubeMarsBaseCAN(BaseMotor):
|
|
|
1427
1434
|
|
|
1428
1435
|
for label, frame in helper_frames:
|
|
1429
1436
|
logger.debug(f"Attempting MIT handshake with helper frame {label}")
|
|
1437
|
+
# No response captured: the helper is a fire-and-forget command
|
|
1438
|
+
# and proves nothing by replying. The MIT payload below is what
|
|
1439
|
+
# the enable is verified against, so demanding a reply here would
|
|
1440
|
+
# only add a second thing to go wrong.
|
|
1430
1441
|
helper_sent = self._send_raw(
|
|
1431
1442
|
arbitration_id=self.motor_can_id,
|
|
1432
1443
|
data=frame,
|
|
1433
|
-
capture_response=
|
|
1444
|
+
capture_response=False,
|
|
1434
1445
|
)
|
|
1435
1446
|
if not helper_sent:
|
|
1436
1447
|
continue
|
|
@@ -1442,6 +1453,22 @@ class CubeMarsBaseCAN(BaseMotor):
|
|
|
1442
1453
|
logger.info(f"MIT mode ready after helper frame {label}")
|
|
1443
1454
|
return
|
|
1444
1455
|
|
|
1456
|
+
# No helper frame is available under the strict policy, and under the
|
|
1457
|
+
# others none got through. Falling back to the direct handshake keeps
|
|
1458
|
+
# those callers working, but it proves only that the motor is
|
|
1459
|
+
# answering -- so say so rather than logging readiness.
|
|
1460
|
+
feedback_before = self._last_feedback_monotonic
|
|
1461
|
+
sent = self._send_mit_payload(neutral, capture_response=True)
|
|
1462
|
+
if sent and self._last_feedback_monotonic > feedback_before:
|
|
1463
|
+
self._mit_enabled = True
|
|
1464
|
+
logger.warning(
|
|
1465
|
+
"MIT mode assumed ready from a direct command handshake: the "
|
|
1466
|
+
"motor is answering, but nothing confirms it entered motor "
|
|
1467
|
+
"mode, and a disabled motor answers identically. Expect "
|
|
1468
|
+
"commands to be accepted and produce no torque if it did not."
|
|
1469
|
+
)
|
|
1470
|
+
return
|
|
1471
|
+
|
|
1445
1472
|
can_state = self._read_can_state(force=True)
|
|
1446
1473
|
raise RuntimeError(
|
|
1447
1474
|
"Failed to enable MIT mode: no fresh feedback observed after MIT handshake "
|
|
@@ -1503,7 +1530,26 @@ class CubeMarsBaseCAN(BaseMotor):
|
|
|
1503
1530
|
- Extended ID: ``(0x08 << 8) | motor_id``
|
|
1504
1531
|
- Payload order: ``KP, KD, Position, Speed, Torque`` bit-packed in 8 bytes.
|
|
1505
1532
|
- Limits are taken from the currently selected motor profile.
|
|
1533
|
+
|
|
1534
|
+
Gains are not defaulted to anything torque-producing on purpose: a
|
|
1535
|
+
caller asking for a pure feed-forward torque needs ``kd`` to stay at
|
|
1536
|
+
zero, and changing that would alter the torque every correct caller
|
|
1537
|
+
already gets. A velocity commanded with ``kd`` at zero cannot act
|
|
1538
|
+
though -- see the warning below -- so that case is reported rather
|
|
1539
|
+
than silently absorbed.
|
|
1506
1540
|
"""
|
|
1541
|
+
if vel_rad_s != 0.0 and kd == 0.0:
|
|
1542
|
+
# tau = t_ff + kp * pos_err + kd * vel_err, so with kd at zero the
|
|
1543
|
+
# velocity term contributes nothing and the command cannot make
|
|
1544
|
+
# the motor turn. Nothing else reports this: the frame is valid,
|
|
1545
|
+
# the motor answers normally, and the shaft simply does not move.
|
|
1546
|
+
logger.warning(
|
|
1547
|
+
f"MIT command carries {vel_rad_s:.3f} rad/s with kd=0, so the "
|
|
1548
|
+
f"velocity term produces no torque and the motor will not "
|
|
1549
|
+
f"follow it. Pass kd explicitly (this motor's profile value is "
|
|
1550
|
+
f"{self._mit_velocity_kd}) or call set_velocity()."
|
|
1551
|
+
)
|
|
1552
|
+
|
|
1507
1553
|
if not self.connected:
|
|
1508
1554
|
logger.warning("Cannot send MIT command - CAN bus not connected")
|
|
1509
1555
|
return
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|