2015-10-09 11:03:59 -03:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# encoding: utf-8
|
|
|
|
|
|
|
|
def build(bld):
|
|
|
|
vehicle = bld.path.name
|
2016-01-21 10:04:51 -04:00
|
|
|
bld.ap_stlib(
|
2015-10-09 11:03:59 -03:00
|
|
|
name=vehicle + '_libs',
|
2016-07-25 17:31:08 -03:00
|
|
|
ap_vehicle=vehicle,
|
|
|
|
ap_libraries=bld.ap_common_vehicle_libraries() + [
|
2015-10-09 11:03:59 -03:00
|
|
|
'APM_Control',
|
2016-07-22 04:45:05 -03:00
|
|
|
'AP_AdvancedFailsafe',
|
2016-08-12 16:13:59 -03:00
|
|
|
'AP_Avoidance',
|
2015-10-09 11:03:59 -03:00
|
|
|
'AP_Arming',
|
|
|
|
'AP_Camera',
|
|
|
|
'AP_L1_Control',
|
|
|
|
'AP_Navigation',
|
|
|
|
'AP_RCMapper',
|
|
|
|
'AP_TECS',
|
2015-12-26 06:40:40 -04:00
|
|
|
'AP_InertialNav',
|
|
|
|
'AC_WPNav',
|
|
|
|
'AC_AttitudeControl',
|
|
|
|
'AP_Motors',
|
2016-11-16 21:05:37 -04:00
|
|
|
'AP_Landing',
|
2016-11-23 02:57:19 -04:00
|
|
|
'AP_Beacon',
|
2017-02-14 15:22:12 -04:00
|
|
|
'PID',
|
2018-02-22 05:13:38 -04:00
|
|
|
'AP_Soaring',
|
2019-09-05 02:01:44 -03:00
|
|
|
'AP_LTM_Telem',
|
2018-03-04 05:41:06 -04:00
|
|
|
'AP_Devo_Telem',
|
2018-12-07 03:52:05 -04:00
|
|
|
'AC_AutoTune',
|
2022-01-04 00:53:18 -04:00
|
|
|
'AP_Follow',
|
2024-02-22 04:18:14 -04:00
|
|
|
'AC_PrecLand',
|
|
|
|
'AP_IRLock',
|
2015-10-09 11:03:59 -03:00
|
|
|
],
|
|
|
|
)
|
|
|
|
|
2016-01-21 10:04:51 -04:00
|
|
|
bld.ap_program(
|
2016-01-17 23:42:52 -04:00
|
|
|
program_name='arduplane',
|
2016-03-24 17:07:13 -03:00
|
|
|
program_groups=['bin', 'plane'],
|
2015-10-09 11:03:59 -03:00
|
|
|
use=vehicle + '_libs',
|
|
|
|
)
|