mirror of https://github.com/ArduPilot/ardupilot
waf: Initial waf support for ppro
This commit is contained in:
parent
33f6b30ef4
commit
34c977f046
|
@ -566,6 +566,16 @@ class px4_v4(px4):
|
||||||
self.romfs_exclude(['oreoled.bin'])
|
self.romfs_exclude(['oreoled.bin'])
|
||||||
self.with_uavcan = True
|
self.with_uavcan = True
|
||||||
|
|
||||||
|
class px4_v4pro(px4):
|
||||||
|
name = 'px4-v4pro'
|
||||||
|
def __init__(self):
|
||||||
|
super(px4_v4pro, self).__init__()
|
||||||
|
self.bootloader_name = 'px4fmuv4pro_bl.bin'
|
||||||
|
self.board_name = 'px4fmu-v4pro'
|
||||||
|
self.px4io_name = 'px4io-v2'
|
||||||
|
self.romfs_exclude(['oreoled.bin'])
|
||||||
|
self.with_uavcan = True
|
||||||
|
|
||||||
class aerofc_v1(px4):
|
class aerofc_v1(px4):
|
||||||
name = 'aerofc-v1'
|
name = 'aerofc-v1'
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
|
|
|
@ -0,0 +1,11 @@
|
||||||
|
include(configs/nuttx_px4fmu-common_apm)
|
||||||
|
|
||||||
|
list(APPEND config_module_list
|
||||||
|
drivers/boards/px4fmu-v4pro
|
||||||
|
drivers/pwm_input
|
||||||
|
drivers/px4io
|
||||||
|
)
|
||||||
|
|
||||||
|
set(config_io_board
|
||||||
|
px4io-v2
|
||||||
|
)
|
Loading…
Reference in New Issue