-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuser.h
41 lines (33 loc) · 1.2 KB
/
user.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/*
* Copyright (C) 2015-2018 Swift Navigation Inc.
* Contact: Swift Navigation <dev@swiftnav.com>
*
* This source is subject to the license found in the file 'LICENSE' which must
* be be distributed together with this source. All other rights reserved.
*
* THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND,
* EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE.
*/
/*****************************************************************************
* Automatically generated from yaml/swiftnav/sbp/user.yaml
* with generate.py. Please do not hand edit!
*****************************************************************************/
/** \defgroup user User
*
* * Messages reserved for use by the user.
* \{ */
#ifndef LIBSBP_USER_MESSAGES_H
#define LIBSBP_USER_MESSAGES_H
#include "common.h"
/** User data
*
* This message can contain any application specific user data up to a
* maximum length of 255 bytes per message.
*/
#define SBP_MSG_USER_DATA 0x0800
typedef struct {
u8 contents[0]; /**< User data payload */
} msg_user_data_t;
/** \} */
#endif /* LIBSBP_USER_MESSAGES_H */