Skip to content

Commit

Permalink
Tools: ardupilotwaf: add entry for 64bit versions of Navigator
Browse files Browse the repository at this point in the history
  • Loading branch information
Williangalvani committed Sep 26, 2024
1 parent 61b9cda commit 62e8495
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Tools/ardupilotwaf/boards.py
Original file line number Diff line number Diff line change
Expand Up @@ -1430,6 +1430,17 @@ def configure_env(self, cfg, env):
CONFIG_HAL_BOARD_SUBTYPE='HAL_BOARD_SUBTYPE_LINUX_NAVIGATOR',
)

class navigator64(linux):
toolchain = 'aarch64-linux-gnueabihf'

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'

Expand Down

0 comments on commit 62e8495

Please sign in to comment.