xWRL6432 MMWAVE-L-SDK  05.04.00.01
dpif_anglemat.h
Go to the documentation of this file.
1 
40 /**************************************************************************
41  *************************** Include Files ********************************
42  **************************************************************************/
43 #ifndef DPIF_ANGLEMAT_H
44 #define DPIF_ANGLEMAT_H
45 
46 #include <stdint.h>
47 
48 #ifdef __cplusplus
49 extern "C" {
50 #endif
51 
52 
64 #define DPIF_DPIF_ANGLEMATRIX_FORMAT_1 1
66 #define DPIF_DPIF_ANGLEMATRIX_FORMAT_2 2 /*DPIF_ANGLEMATRIX_FORMAT*/
69 
70 
79 typedef struct DPIF_Anglemat_t
80 {
82  uint32_t datafmt;
83 
85  uint32_t dataSize;
86 
90  void *data;
92 
93 
94 #ifdef __cplusplus
95 }
96 #endif
97 
98 #endif /* DPIF_ANGLEMAT_H */
DPIF_Anglemat::datafmt
uint32_t datafmt
Angle Matrix data Format DPIF_ANGLEMATRIX_FORMAT.
Definition: dpif_anglemat.h:82
DPIF_Anglemat::data
void * data
Angle Matrix data pointer User could remap this to specific typedef using information in DPIF_ANGLEMA...
Definition: dpif_anglemat.h:90
DPIF_Anglemat::dataSize
uint32_t dataSize
Angle Matrix buffer size in bytes.
Definition: dpif_anglemat.h:85
DPIF_Anglemat
Angle Matrix Buffer Interface.
Definition: dpif_anglemat.h:80