mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-04 15:08:28 -04:00
7ba3df8c80
Other boards (like PX4 ones) aren't supported yet.
15 lines
251 B
Python
15 lines
251 B
Python
#!/usr/bin/env python
|
|
# encoding: utf-8
|
|
|
|
import boards
|
|
|
|
def build(bld):
|
|
board = boards.get_board(bld.env.BOARD)
|
|
if not isinstance(board, boards.linux):
|
|
return
|
|
|
|
bld.ap_program(
|
|
use='ap',
|
|
program_group='tools',
|
|
)
|