This commit is contained in:
PX4BuildBot
2015-08-14 21:55:31 +00:00
parent 48553b0395
commit 753b694df1
264 changed files with 1794 additions and 1794 deletions
+8 -8
View File
@@ -4,14 +4,14 @@
typedef struct __mavlink_point_of_interest_t
{
float x; ///< X Position
float y; ///< Y Position
float z; ///< Z Position
uint16_t timeout; ///< 0: no timeout, >1: timeout in seconds
uint8_t type; ///< 0: Notice, 1: Warning, 2: Critical, 3: Emergency, 4: Debug
uint8_t color; ///< 0: blue, 1: yellow, 2: red, 3: orange, 4: green, 5: magenta
uint8_t coordinate_system; ///< 0: global, 1:local
char name[26]; ///< POI name
float x; /*< X Position*/
float y; /*< Y Position*/
float z; /*< Z Position*/
uint16_t timeout; /*< 0: no timeout, >1: timeout in seconds*/
uint8_t type; /*< 0: Notice, 1: Warning, 2: Critical, 3: Emergency, 4: Debug*/
uint8_t color; /*< 0: blue, 1: yellow, 2: red, 3: orange, 4: green, 5: magenta*/
uint8_t coordinate_system; /*< 0: global, 1:local*/
char name[26]; /*< POI name*/
} mavlink_point_of_interest_t;
#define MAVLINK_MSG_ID_POINT_OF_INTEREST_LEN 43