yincheng.zhong
2024-08-20 7744fffacb03dc81cc9dbaf9f5d86a0f21e79c03
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#include <stdint.h>
#include "lib_aoa.h"
 
#if AOA_3D_EN
 
#ifndef XIP_EN
const uint32_t svec_ch5_ptr[120 * 19 * RX_ANT_PORTS_NUM] = {
#else
uint32_t svec_ch5_ptr[120 * 19 * RX_ANT_PORTS_NUM] = {
#endif
#include "cmp_3D_svec_hex_sq4ant_az3el5_ch5.txt"
};
 
#ifndef XIP_EN
const uint32_t svec_ch9_ptr[120 * 19 * RX_ANT_PORTS_NUM] = {
#else
uint32_t svec_ch9_ptr[120 * 19 * RX_ANT_PORTS_NUM] = {
#endif
#include "cmp_3D_svec_hex_sq4ant_az3el5_ch9.txt"
};
 
#else
 
#ifndef XIP_EN
const uint32_t svec_ch5_ptr[360 * RX_ANT_PORTS_NUM] = {
#else
uint32_t svec_ch5_ptr[360 * RX_ANT_PORTS_NUM] = {
#endif
#if (ANT_PATTERN == ANT_PATTERN_SQUARE)
#include "cmp_svec_hex_square4ant_ch5.txt"
#else
#if (RX_ANT_PORTS_NUM == 4)
#include "cmp_svec_hex_ch5.txt"
#elif (RX_ANT_PORTS_NUM == 3)
#include "cmp_svec_hex_3ant_ch5.txt"
#elif (RX_ANT_PORTS_NUM == 2)
#include "cmp_svec_hex_2ant_withzeros_ch5.txt"
#else
    0
#endif
#endif
};
 
#ifndef XIP_EN
const uint32_t svec_ch9_ptr[360 * RX_ANT_PORTS_NUM] = {
#else
uint32_t svec_ch9_ptr[360 * RX_ANT_PORTS_NUM] = {
#endif
#if (ANT_PATTERN == ANT_PATTERN_SQUARE)
#include "cmp_svec_hex_square4ant_ch9.txt"
#else
#if (RX_ANT_PORTS_NUM == 4)
#include "cmp_svec_hex_ch9.txt"
#elif (RX_ANT_PORTS_NUM == 3)
#include "cmp_svec_hex_3ant_ch9.txt"
#elif (RX_ANT_PORTS_NUM == 2)
#include "cmp_svec_hex_2ant_withzeros_ch9.txt"
#else
    0
#endif
#endif
};
 
#endif