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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyMAVLinCS
3
- Version: 1.0.3
3
+ Version: 1.0.4
4
4
  Summary: Python API for autonomous drone control based on pymavlink
5
5
  Author-email: Noah Redon <redonnoah.cs@gmail.com>
6
6
  License: GPL-3.0-or-later
@@ -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.target_system}) == {self.master.target_system} and "
3134
- f"getattr(COMMAND_ACK, 'target_component', {self.master.target_component}) == {self.master.target_component}"
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.target_system} and "
3186
- f"MISSION_ACK.target_component == {self.master.target_component}"
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(
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyMAVLinCS
3
- Version: 1.0.3
3
+ Version: 1.0.4
4
4
  Summary: Python API for autonomous drone control based on pymavlink
5
5
  Author-email: Noah Redon <redonnoah.cs@gmail.com>
6
6
  License: GPL-3.0-or-later
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "pyMAVLinCS"
7
- version = "1.0.3"
7
+ version = "1.0.4"
8
8
  description = "Python API for autonomous drone control based on pymavlink"
9
9
  authors = [
10
10
  {name="Noah Redon", email="redonnoah.cs@gmail.com"}
File without changes
File without changes
File without changes