Main MRPT website
>
C++ reference for MRPT 1.9.9
rplidar
include
rplidar_protocol.h
Go to the documentation of this file.
1
/* +------------------------------------------------------------------------+
2
| Mobile Robot Programming Toolkit (MRPT) |
3
| http://www.mrpt.org/ |
4
| |
5
| Copyright (c) 2005-2018, Individual contributors, see AUTHORS file |
6
| See: http://www.mrpt.org/Authors - All rights reserved. |
7
| Released under BSD License. See details in http://www.mrpt.org/License |
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
// RP-Lidar Input Packets
37
38
#define RPLIDAR_CMD_SYNC_BYTE 0xA5
39
#define RPLIDAR_CMDFLAG_HAS_PAYLOAD 0x80
40
41
#define RPLIDAR_ANS_SYNC_BYTE1 0xA5
42
#define RPLIDAR_ANS_SYNC_BYTE2 0x5A
43
44
#define RPLIDAR_ANS_PKTFLAG_LOOP 0x1
45
46
#define RPLIDAR_ANS_HEADER_SIZE_MASK 0x3FFFFFFF
47
#define RPLIDAR_ANS_HEADER_SUBTYPE_SHIFT (30)
48
49
#if defined(_WIN32)
50
#pragma pack(1)
51
#endif
52
53
typedef
struct
_rplidar_cmd_packet_t
54
{
55
_u8
syncByte
;
// must be RPLIDAR_CMD_SYNC_BYTE
56
_u8
cmd_flag
;
57
_u8
size
;
58
_u8
*
data
;
59
}
__attribute__
((
packed
)) rplidar_cmd_packet_t;
60
61
typedef
struct
_rplidar_ans_header_t
62
{
63
_u8
syncByte1
;
// must be RPLIDAR_ANS_SYNC_BYTE1
64
_u8
syncByte2
;
// must be RPLIDAR_ANS_SYNC_BYTE2
65
_u32
size_q30_subtype
;
// see _u32 size:30; _u32 subType:2;
66
_u8
type
;
67
}
__attribute__
((
packed
)) rplidar_ans_header_t;
68
69
#if defined(_WIN32)
70
#pragma pack()
71
#endif
__attribute__
struct _rplidar_cmd_packet_t __attribute__((packed)) rplidar_cmd_packet_t
_rplidar_ans_header_t::type
_u8 type
Definition:
rplidar_protocol.h:66
_u8
uint8_t _u8
Definition:
rptypes.h:60
_rplidar_ans_header_t::syncByte2
_u8 syncByte2
Definition:
rplidar_protocol.h:64
_rplidar_ans_header_t
Definition:
rplidar_protocol.h:61
_rplidar_cmd_packet_t::data
_u8 * data
Definition:
rplidar_protocol.h:58
_rplidar_cmd_packet_t::size
_u8 size
Definition:
rplidar_protocol.h:57
_rplidar_ans_header_t::syncByte1
_u8 syncByte1
Definition:
rplidar_protocol.h:63
_rplidar_cmd_packet_t::syncByte
_u8 syncByte
Definition:
rplidar_protocol.h:55
packed
GLuint GLenum GLsizei GLsizei GLint GLint GLboolean packed
Definition:
glext.h:6795
_rplidar_cmd_packet_t
Definition:
rplidar_protocol.h:53
_rplidar_cmd_packet_t::cmd_flag
_u8 cmd_flag
Definition:
rplidar_protocol.h:56
_u32
uint32_t _u32
Definition:
rptypes.h:66
_rplidar_ans_header_t::size_q30_subtype
_u32 size_q30_subtype
Definition:
rplidar_protocol.h:65
Page generated by
Doxygen 1.8.17
for MRPT 1.9.9 Git: ad3a9d8ae Tue May 1 23:10:22 2018 -0700 at miƩ 12 jul 2023 10:03:34 CEST