mirror of https://github.com/ArduPilot/ardupilot
ardupilotwaf: add new board PocketPilot
This commit is contained in:
parent
7126b0c5ae
commit
793578c0a9
|
@ -368,6 +368,16 @@ class blue(linux):
|
|||
CONFIG_HAL_BOARD_SUBTYPE = 'HAL_BOARD_SUBTYPE_LINUX_BLUE',
|
||||
)
|
||||
|
||||
class pocket(linux):
|
||||
toolchain = 'arm-linux-gnueabihf'
|
||||
|
||||
def configure_env(self, cfg, env):
|
||||
super(pocket, self).configure_env(cfg, env)
|
||||
|
||||
env.DEFINES.update(
|
||||
CONFIG_HAL_BOARD_SUBTYPE = 'HAL_BOARD_SUBTYPE_LINUX_POCKET',
|
||||
)
|
||||
|
||||
class pxf(linux):
|
||||
toolchain = 'arm-linux-gnueabihf'
|
||||
|
||||
|
|
Loading…
Reference in New Issue