mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-12 10:58:30 -04:00
e1c890eb58
useful for UART -> ESCs
11 lines
141 B
Python
11 lines
141 B
Python
#!/usr/bin/env python
|
|
# encoding: utf-8
|
|
|
|
import ardupilotwaf
|
|
|
|
def build(bld):
|
|
ardupilotwaf.program(
|
|
bld,
|
|
use='ap',
|
|
)
|