mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-06-06 16:58:48 +08:00
db08f28539
from a setting
22 lines
665 B
XML
22 lines
665 B
XML
<!DOCTYPE module SYSTEM "module.dtd">
|
|
<!-- optional flags:
|
|
- USE_HIGH_ACCEL_FLAG: will disable accelerometers on high acceleration detection (low speed, high thrust)
|
|
- ARDUIMU_SYNC_SEND: downlink imu gyro and accels
|
|
-->
|
|
<module name="ins_ArduIMU" dir="ins">
|
|
<header>
|
|
<file name="ins_arduimu_basic.h"/>
|
|
</header>
|
|
<init fun="ArduIMU_init()"/>
|
|
<periodic fun="ArduIMU_periodic()" freq="60"/>
|
|
<periodic fun="ArduIMU_periodicGPS()" freq="4"/>
|
|
<event fun="ArduIMU_event()"/>
|
|
<makefile target="ap">
|
|
<file name="ins_arduimu_basic.c"/>
|
|
</makefile>
|
|
<makefile target="sim">
|
|
<file_arch name="ins_arduimu_basic.c"/>
|
|
</makefile>
|
|
</module>
|
|
|