mirror of https://github.com/ArduPilot/ardupilot
Tools: ardupilotwaf: add entry for 64bit versions of Navigator
This commit is contained in:
parent
03c12698df
commit
ea4d3fe87d
|
@ -1365,6 +1365,17 @@ class navigator(linux):
|
|||
CONFIG_HAL_BOARD_SUBTYPE='HAL_BOARD_SUBTYPE_LINUX_NAVIGATOR',
|
||||
)
|
||||
|
||||
class navigator64(linux):
|
||||
toolchain = 'aarch64-linux-gnu'
|
||||
|
||||
def configure_env(self, cfg, env):
|
||||
super(navigator64, self).configure_env(cfg, env)
|
||||
|
||||
env.DEFINES.update(
|
||||
CONFIG_HAL_BOARD_SUBTYPE='HAL_BOARD_SUBTYPE_LINUX_NAVIGATOR',
|
||||
)
|
||||
|
||||
|
||||
class erleboard(linux):
|
||||
toolchain = 'arm-linux-gnueabihf'
|
||||
|
||||
|
|
Loading…
Reference in New Issue