QuakeGod
2024-07-27 842bb64195f958b050867c50db66fc0aa413dafb
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
/**
  ******************************************************************************
  * @file           : Lidar.h
  * @brief          : Header for Lidar.c file.
  *                   This file contains the Lidar defines of the application.
  ******************************************************************************
    */
 
#ifndef __LIDAR_H__
#define __LIDAR_H__
 
#define LIDAR_VER    (0x100)
#pragma anon_unions
typedef struct tagLidarDotsPkt
{
    unsigned short StSign;
    unsigned char CT;
    unsigned char LSN;
    unsigned short FSA;
    unsigned short LSA;
    unsigned short CS;
    unsigned char data[1];
 
}stLidarDotsPkt;
 
 
 
#endif    /* __LIDAR_H__ */