mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-08 17:08:28 -04:00
waf: added revo-mini build type
This commit is contained in:
parent
3e65347b97
commit
6ee0c48ab1
@ -406,6 +406,15 @@ class sparky2(chibios):
|
||||
)
|
||||
env.CHIBIOS_FATFS_FLAG = 'USE_FATFS=no'
|
||||
|
||||
class revo_mini(chibios):
|
||||
name = 'revo-mini'
|
||||
def configure_env(self, cfg, env):
|
||||
super(revo_mini, self).configure_env(cfg, env)
|
||||
env.DEFINES.update(
|
||||
CONFIG_HAL_BOARD_SUBTYPE = 'HAL_BOARD_SUBTYPE_CHIBIOS_REVOMINI',
|
||||
)
|
||||
env.CHIBIOS_FATFS_FLAG = 'USE_FATFS=no'
|
||||
|
||||
class linux(Board):
|
||||
def configure_env(self, cfg, env):
|
||||
super(linux, self).configure_env(cfg, env)
|
||||
|
Loading…
Reference in New Issue
Block a user