mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-05 15:38:29 -04:00
11 lines
242 B
Python
11 lines
242 B
Python
#!/usr/bin/env python
|
|
# encoding: utf-8
|
|
|
|
def build(bld):
|
|
bld.ap_example(
|
|
use=['ap','JEDEC_libs'],
|
|
)
|
|
bld.ap_stlib(name= 'JEDEC_libs',
|
|
ap_vehicle='AP_Periph',
|
|
ap_libraries= ['AP_FlashIface'])
|