d281067bcc
This commit makes examples' wscripts use ardupilotwaf.example() instead of ardupilot.program().
14 lines
214 B
Python
14 lines
214 B
Python
#!/usr/bin/env python
|
|
# encoding: utf-8
|
|
|
|
import ardupilotwaf
|
|
|
|
def build(bld):
|
|
# TODO: Test code doesn't build. Fix or delete the test.
|
|
return
|
|
|
|
ardupilotwaf.example(
|
|
bld,
|
|
use='ap',
|
|
)
|