hc
2024-12-19 9370bb92b2d16684ee45cf24e879c93c509162da
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
65
66
67
68
69
70
71
72
73
74
75
/** @file */
/******************************************************************************
 *
 * Copyright(c) 2019 Realtek Corporation. All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of version 2 of the GNU General Public License as
 * published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
 * more details.
 *
 ******************************************************************************/
 
#ifndef __MAC_HW_INFO_H
#define __MAC_HW_INFO_H
/*--------------------Define -------------------------------------------*/
/*--------------------Define MACRO--------------------------------------*/
/*--------------------Define Enum---------------------------------------*/
// TRX Desc related
// MAC_REG related
// F2P CMD related
 
/**
 * @enum mac_ax_snd_pkt_sel
 *
 * @brief mac_ax_snd_pkt_sel
 *
 * @var mac_ax_snd_pkt_sel::MAC_AX_UNICAST_NDPA
 * Please Place Description here.
 * @var mac_ax_snd_pkt_sel::MAC_AX_BROADCAST_NDPA
 * Please Place Description here.
 * @var mac_ax_snd_pkt_sel::MAC_AX_LAST_NDPA
 * Please Place Description here.
 * @var mac_ax_snd_pkt_sel::MAC_AX_MIDDLE_NDPA
 * Please Place Description here.
 * @var mac_ax_snd_pkt_sel::MAC_AX_BF_REPORT_POLL
 * Please Place Description here.
 * @var mac_ax_snd_pkt_sel::MAC_AX_FINAL_BFRP
 * Please Place Description here.
 */
enum mac_ax_snd_pkt_sel {
   MAC_AX_UNICAST_NDPA = 0,
   MAC_AX_BROADCAST_NDPA = 1,
   MAC_AX_LAST_NDPA = 2,
   MAC_AX_MIDDLE_NDPA = 3,
   MAC_AX_BF_REPORT_POLL = 4,
   MAC_AX_FINAL_BFRP = 5,
};
 
/**
 * @enum mac_ax_ndpa_pkt
 *
 * @brief mac_ax_ndpa_pkt
 *
 * @var mac_ax_ndpa_pkt::MAC_AX_NORMAL_PKT
 * Please Place Description here.
 * @var mac_ax_ndpa_pkt::MAC_AX_HT_PKT
 * Please Place Description here.
 * @var mac_ax_ndpa_pkt::MAC_AX_VHT_PKT
 * Please Place Description here.
 * @var mac_ax_ndpa_pkt::MAC_AX_HE_PKT
 * Please Place Description here.
 */
enum mac_ax_ndpa_pkt {
   MAC_AX_NORMAL_PKT = 0,
   MAC_AX_HT_PKT = 1,
   MAC_AX_VHT_PKT = 2,
   MAC_AX_HE_PKT = 2,
};
 
/*--------------------Define Struct-------------------------------------*/
#endif