ardupilot/libraries/AP_DDS/tests/wscript
Ryan Friedman d31896a545 AP_DDS: Stub out external odom
* Implement frame ID checking and test it
* Implement the visual odom function that does narrowing to floats
* Normalize quaternions from ROS
* Supply 0 error to EKF
* Handle external odomo only if HAL_VISUALODOM_ENABLED is defined
* Implement odom timestamping and improve docs
* Add unit tests
* Add a CONFIG file for DDS

Signed-off-by: Ryan Friedman <ryanfriedman5410+github@gmail.com>
2023-08-24 07:46:06 +10:00

11 lines
203 B
Python

#!/usr/bin/env python3
def build(bld):
if not bld.env.ENABLE_DDS:
return
bld.ap_find_tests(
use='ap',
DOUBLE_PRECISION_SOURCES = ['test_ap_dds_external_odom.cpp']
)