waf: examples: use methods from bld instead of ardupilotwaf
This commit is contained in:
parent
e9d3dc9e72
commit
3d22490397
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,13 +1,10 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
if bld.env.BOARD in ['sitl']:
|
if bld.env.BOARD in ['sitl']:
|
||||||
return
|
return
|
||||||
|
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,13 +1,10 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
# TODO: Test code doesn't build. Fix or delete the test.
|
# TODO: Test code doesn't build. Fix or delete the test.
|
||||||
return
|
return
|
||||||
|
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,13 +1,10 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
# TODO: Test code doesn't build. Fix or delete the test.
|
# TODO: Test code doesn't build. Fix or delete the test.
|
||||||
return
|
return
|
||||||
|
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,13 +1,10 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
# TODO: Test code doesn't build. Fix or delete the test.
|
# TODO: Test code doesn't build. Fix or delete the test.
|
||||||
return
|
return
|
||||||
|
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
|
|
||||||
import ardupilotwaf
|
|
||||||
|
|
||||||
def build(bld):
|
def build(bld):
|
||||||
ardupilotwaf.example(
|
bld.example(
|
||||||
bld,
|
|
||||||
use='ap',
|
use='ap',
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user