blob: 936a38af4a6f960b2af14365a23eeacf75e10017 [file] [log] [blame]
rjw6c1fd8f2022-11-30 14:33:01 +08001/***************************************************************************
2 * Copyright (c) 2018 MediaTek Inc. All Rights Reserved.
3 * --------------------
4 * This software is protected by copyright and the information contained
5 * herein is confidential. The software may not be copied and the information
6 * contained herein may not be used or disclosed except with the written
7 * permission of MediaTek Inc.
8 ***************************************************************************
9 *
10 * $Id: $
11 * $Revision: $
12 * $DateTime: $
13 *
14 *************************************************************************
15 *
16 * File Description
17 * ----------------
18 *
19 *
20 ***************************************************************************/
21/*******************************************************************************
22 * Included header files
23 *******************************************************************************/
24#ifndef NR_HWSIM_STRUCT_H
25#define NR_HWSIM_STRUCT_H
26
27#include "kal_public_api.h"
28#include "nrvrf_intf.h"
29
30
31typedef struct NrHwsimDlData_tag
32{
33 Nrvrf_rxFilter_t rx_filter;
34} NrHwsimDlData_t;
35
36
37
38typedef struct NrHwsimDlResourceReq_tag
39{
40 Nrvrf_rxFilter_t rx_filter;
41} NrHwsimDlResourceReq_t;
42
43typedef struct NrHwsimUlDataReq_tag
44{
45 int dummy;
46} NrHwsimUlDataReq_t;
47
48typedef struct NrHwsimUlResourceReq_tag
49{
50 Nrvrf_txFilter_t tx_filter;
51 Nrvrf_txPayloadObject_t txPayLoadObject;
52} NrHwsimUlResourceReq_t;
53
54#endif /* NR_HWSIM_STRUCT_H */