mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-02-08 08:53:56 -04:00
It makes more sense for Hello to be an example and for CPUInfo and Replay to be placed inside a `build/<board>/tools/` directory.
11 lines
141 B
Python
11 lines
141 B
Python
#!/usr/bin/env python
|
|
# encoding: utf-8
|
|
|
|
import ardupilotwaf
|
|
|
|
def build(bld):
|
|
ardupilotwaf.example(
|
|
bld,
|
|
use='ap',
|
|
)
|