@ -24,7 +24,6 @@
@@ -24,7 +24,6 @@
# include <AP_AHRS/AP_AHRS.h>
# define IRLOCK_MAX_TARGETS 5 // max number of targets that can be detected by IR-LOCK sensor (should match PX4Firmware's irlock driver's IRLOCK_OBJECTS_MAX)
# define IRLOCK_TIMEOUT_MS 100 // target info times out after 0.1 seconds
class IRLock
{
@ -40,7 +39,7 @@ public:
@@ -40,7 +39,7 @@ public:
bool healthy ( ) const { return _flags . healthy ; }
// timestamp of most recent data read from the sensor
uint32_t last_update ( ) const { return _last_update ; }
uint32_t last_update_ms ( ) const { return _last_update_ms ; }
// returns the number of blocks in the current frame
size_t num_targets ( ) const { return _num_targets ; }
@ -48,9 +47,14 @@ public:
@@ -48,9 +47,14 @@ public:
// retrieve latest sensor data - returns true if new data is available
virtual bool update ( ) = 0 ;
// get_angle_to_target - retrieve body frame x and y angles (in radians) to target
// returns true if angles are available, false if not (i.e. no target)
bool get_angle_to_target ( float & x_angle_rad , float & y_angle_rad ) const ;
// retrieve body frame x and y angles (in radians) to target
// returns true if data is available
bool get_angle_to_target_rad ( float & x_angle_rad , float & y_angle_rad ) const ;
// retrieve body frame unit vector in direction of target
// returns true if data is available
bool get_unit_vector_body ( Vector3f & ret ) const ;
protected :
struct AP_IRLock_Flags {
@ -58,17 +62,16 @@ protected:
@@ -58,17 +62,16 @@ protected:
} _flags ;
// internals
uint32_t _last_update ;
uint32_t _last_update_ms ;
uint16_t _num_targets ;
// irlock_target_info is a duplicate of the PX4Firmware irlock_s structure
typedef struct {
uint64_t timestamp ; // time target was seen in microseconds since system start
uint16_t target_num ; // target number prioritised by size (largest is 0)
float angle_x ; // x-axis angle in radians from center of image to center of target
float angle_y ; // y-axis angle in radians from center of image to center of target
float size_x ; // size in radians of target along x-axis
float size_y ; // size in radians of target along y-axis
uint64_t timestamp ; // microseconds since system start
float pos_x ; // x-axis distance from center of image to center of target in units of tan(theta)
float pos_y ; // y-axis distance from center of image to center of target in units of tan(theta)
float size_x ; // size of target along x-axis in units of tan(theta)
float size_y ; // size of target along y-axis in units of tan(theta)
} irlock_target_info ;
irlock_target_info _target_info [ IRLOCK_MAX_TARGETS ] ;