pyMAVLinCS 1.0.3__tar.gz → 1.0.4__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.
- {pymavlincs-1.0.3 → pymavlincs-1.0.4}/PKG-INFO +1 -1
- {pymavlincs-1.0.3 → pymavlincs-1.0.4}/pyMAVLinCS/__init__.py +4 -4
- {pymavlincs-1.0.3 → pymavlincs-1.0.4}/pyMAVLinCS.egg-info/PKG-INFO +1 -1
- {pymavlincs-1.0.3 → pymavlincs-1.0.4}/pyproject.toml +1 -1
- {pymavlincs-1.0.3 → pymavlincs-1.0.4}/LICENSE +0 -0
- {pymavlincs-1.0.3 → pymavlincs-1.0.4}/README.md +0 -0
- {pymavlincs-1.0.3 → pymavlincs-1.0.4}/pyMAVLinCS/mavecstra.py +0 -0
- {pymavlincs-1.0.3 → pymavlincs-1.0.4}/pyMAVLinCS/mavtypes.py +0 -0
- {pymavlincs-1.0.3 → pymavlincs-1.0.4}/pyMAVLinCS/mission_control_code.py +0 -0
- {pymavlincs-1.0.3 → pymavlincs-1.0.4}/pyMAVLinCS/setup_logger.py +0 -0
- {pymavlincs-1.0.3 → pymavlincs-1.0.4}/pyMAVLinCS.egg-info/SOURCES.txt +0 -0
- {pymavlincs-1.0.3 → pymavlincs-1.0.4}/pyMAVLinCS.egg-info/dependency_links.txt +0 -0
- {pymavlincs-1.0.3 → pymavlincs-1.0.4}/pyMAVLinCS.egg-info/requires.txt +0 -0
- {pymavlincs-1.0.3 → pymavlincs-1.0.4}/pyMAVLinCS.egg-info/top_level.txt +0 -0
- {pymavlincs-1.0.3 → pymavlincs-1.0.4}/setup.cfg +0 -0
|
@@ -3130,8 +3130,8 @@ class MAVLinCS:
|
|
|
3130
3130
|
|
|
3131
3131
|
condition = (
|
|
3132
3132
|
f"COMMAND_ACK.command == {command} and "
|
|
3133
|
-
f"getattr(COMMAND_ACK, 'target_system', {self.master.
|
|
3134
|
-
f"getattr(COMMAND_ACK, 'target_component', {self.master.
|
|
3133
|
+
f"getattr(COMMAND_ACK, 'target_system', {self.master.source_system}) == {self.master.source_system} and "
|
|
3134
|
+
f"getattr(COMMAND_ACK, 'target_component', {self.master.source_component}) == {self.master.source_component}"
|
|
3135
3135
|
)
|
|
3136
3136
|
m = self.recv_match(
|
|
3137
3137
|
type="COMMAND_ACK",
|
|
@@ -3182,8 +3182,8 @@ class MAVLinCS:
|
|
|
3182
3182
|
|
|
3183
3183
|
condition = (
|
|
3184
3184
|
f"({mission_type} is None or getattr(MISSION_ACK, 'mission_type', {mission_type}) == {mission_type}) and "
|
|
3185
|
-
f"MISSION_ACK.target_system == {self.master.
|
|
3186
|
-
f"MISSION_ACK.target_component == {self.master.
|
|
3185
|
+
f"MISSION_ACK.target_system == {self.master.source_system} and "
|
|
3186
|
+
f"MISSION_ACK.target_component == {self.master.source_component}"
|
|
3187
3187
|
)
|
|
3188
3188
|
|
|
3189
3189
|
m = self.recv_match(
|
|
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
|