1
2
3
4
5
6
7 #ifndef __RTW_BTCOEX_H__
8 #define __RTW_BTCOEX_H__
9
10 #include <drv_types.h>
11
12
13 #define PACKET_NORMAL 0
14 #define PACKET_DHCP 1
15 #define PACKET_ARP 2
16 #define PACKET_EAPOL 3
17
18 void rtw_btcoex_MediaStatusNotify(struct adapter *, u8 mediaStatus);
19 void rtw_btcoex_HaltNotify(struct adapter *);
20
21
22
23
24 void rtw_btcoex_RejectApAggregatedPacket(struct adapter *, u8 enable);
25 void rtw_btcoex_LPS_Enter(struct adapter *);
26 void rtw_btcoex_LPS_Leave(struct adapter *);
27
28 #endif