mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-04 15:08:28 -04:00
a35c0d48b0
Make the rename so that there is no name clashes when defining it as a taskgen method.
12 lines
172 B
Python
12 lines
172 B
Python
#!/usr/bin/env python
|
|
# encoding: utf-8
|
|
|
|
import ardupilotwaf
|
|
|
|
def build(bld):
|
|
ardupilotwaf.ap_program(
|
|
bld,
|
|
use='ap',
|
|
blddestdir='tools',
|
|
)
|