AP_Module: added external module hook library

this allows for external modules to be called at defined hook
locations in ArduPilot. The initial example is a module that consumes
the AHRS state, but this can be generalised to a wide variety of hooks
This commit is contained in:
Andrew Tridgell
2016-07-07 18:26:11 +10:00
parent 59e4e8def6
commit bd00beaf99
8 changed files with 466 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
#!/usr/bin/env python
# encoding: utf-8
def build(bld):
bld.ap_example(
use='ap',
)