mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-08 00:48:30 -04:00
844222870c
A convenience, since we don't expect the board to change for a given configuration.
14 lines
218 B
Python
14 lines
218 B
Python
#!/usr/bin/env python
|
|
# encoding: utf-8
|
|
|
|
import boards
|
|
|
|
def build(bld):
|
|
if not isinstance(bld.get_board(), boards.linux):
|
|
return
|
|
|
|
bld.ap_program(
|
|
use='ap',
|
|
program_groups='tools',
|
|
)
|