aboutsummaryrefslogtreecommitdiff
path: root/src/modules/uORB/topics/vehicle_land_detected.h
blob: 0de29498d424e25e2e2e465e5d8039ed1ca744cb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef __TOPIC_VEHICLE_LANDED_H__
#define __TOPIC_VEHICLE_LANDED_H__

#include "../uORB.h"

/**
 * @addtogroup topics
 * @{
 */

struct vehicle_land_detected_s {
	uint64_t timestamp;	   /**< timestamp of the setpoint */
	bool landed;           /**< true if vehicle is currently landed on the ground*/
};

/**
 * @}
 */

/* register this as object request broker structure */
ORB_DECLARE(vehicle_land_detected);

#endif //__TOPIC_VEHICLE_LANDED_H__