sdk
include
sl_lidar_protocol.h
Go to the documentation of this file.
1
/*
2
* Slamtec LIDAR SDK
3
*
4
* sl_lidar_protocol.h
5
*
6
* Copyright (c) 2020 Shanghai Slamtec Co., Ltd.
7
*/
8
9
/*
10
* Redistribution and use in source and binary forms, with or without
11
* modification, are permitted provided that the following conditions are met:
12
*
13
* 1. Redistributions of source code must retain the above copyright notice,
14
* this list of conditions and the following disclaimer.
15
*
16
* 2. Redistributions in binary form must reproduce the above copyright notice,
17
* this list of conditions and the following disclaimer in the documentation
18
* and/or other materials provided with the distribution.
19
*
20
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
22
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
23
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
24
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
25
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
26
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
27
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
28
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
29
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
30
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31
*
32
*/
33
34
#pragma once
35
36
37
#if defined(_MSC_VER)
38
#pragma warning(push)
39
#pragma warning(disable:4200)
40
#endif
41
42
#include "
sl_types.h
"
43
44
#define SL_LIDAR_CMD_SYNC_BYTE 0xA5
45
#define SL_LIDAR_CMDFLAG_HAS_PAYLOAD 0x80
46
47
#define SL_LIDAR_ANS_SYNC_BYTE1 0xA5
48
#define SL_LIDAR_ANS_SYNC_BYTE2 0x5A
49
50
#define SL_LIDAR_ANS_PKTFLAG_LOOP 0x1
51
52
#define SL_LIDAR_ANS_HEADER_SIZE_MASK 0x3FFFFFFF
53
#define SL_LIDAR_ANS_HEADER_SUBTYPE_SHIFT (30)
54
55
#if defined(_WIN32)
56
#pragma pack(1)
57
#endif
58
59
60
61
typedef
struct
sl_lidar_cmd_packet_t
62
{
63
sl_u8
syncByte
;
//must be SL_LIDAR_CMD_SYNC_BYTE
64
sl_u8
cmd_flag
;
65
sl_u8
size
;
66
sl_u8
data
[0];
67
}
__attribute__
((packed))
sl_lidar_cmd_packet_t
;
68
69
70
typedef
struct
sl_lidar_ans_header_t
71
{
72
sl_u8
syncByte1
;
// must be SL_LIDAR_ANS_SYNC_BYTE1
73
sl_u8
syncByte2
;
// must be SL_LIDAR_ANS_SYNC_BYTE2
74
sl_u32
size_q30_subtype
;
// see _u32 size:30; _u32 subType:2;
75
sl_u8
type
;
76
}
__attribute__
((packed))
sl_lidar_ans_header_t
;
77
78
#if defined(_WIN32)
79
#pragma pack()
80
#endif
81
82
83
#if defined(_MSC_VER)
84
#pragma warning(pop)
85
#endif
sl_lidar_cmd_packet_t::data
sl_u8 data[0]
Definition:
sl_lidar_protocol.h:66
sl_types.h
sl_lidar_ans_header_t::size_q30_subtype
sl_u32 size_q30_subtype
Definition:
sl_lidar_protocol.h:74
sl_lidar_ans_header_t::syncByte1
sl_u8 syncByte1
Definition:
sl_lidar_protocol.h:72
sl_lidar_ans_header_t::syncByte2
sl_u8 syncByte2
Definition:
sl_lidar_protocol.h:73
sl_lidar_cmd_packet_t::syncByte
sl_u8 syncByte
Definition:
sl_lidar_protocol.h:63
sl_lidar_ans_header_t::type
sl_u8 type
Definition:
sl_lidar_protocol.h:75
sl_lidar_cmd_packet_t
Definition:
sl_lidar_protocol.h:61
__attribute__
struct sl_lidar_cmd_packet_t __attribute__((packed)) sl_lidar_cmd_packet_t
sl_lidar_cmd_packet_t::cmd_flag
sl_u8 cmd_flag
Definition:
sl_lidar_protocol.h:64
sl_lidar_cmd_packet_t::size
sl_u8 size
Definition:
sl_lidar_protocol.h:65
sl_lidar_ans_header_t
Definition:
sl_lidar_protocol.h:70
rplidar_ros
Author(s):
autogenerated on Fri Aug 2 2024 08:42:14