We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad243b7 commit 2a93c9aCopy full SHA for 2a93c9a
core/services/ardupilot_manager/typedefs.py
@@ -64,7 +64,7 @@ class SITLFrame(str, Enum):
64
def get_sitl_platform_name(machine_arch: str) -> str:
65
"""Get SITL platform name based on machine architecture."""
66
67
- if "arm" not in machine_arch.lower():
+ if "arm" not in machine_arch.lower() and "aarch" not in machine_arch.lower():
68
return "SITL_x86_64_linux_gnu"
69
return "SITL_arm_linux_gnueabihf"
70
0 commit comments