| /*************************************************************************** |
| * Copyright (c) 2018 MediaTek Inc. All Rights Reserved. |
| * -------------------- |
| * This software is protected by copyright and the information contained |
| * herein is confidential. The software may not be copied and the information |
| * contained herein may not be used or disclosed except with the written |
| * permission of MediaTek Inc. |
| *************************************************************************** |
| * |
| * $Id: $ |
| * $Revision: $ |
| * $DateTime: $ |
| * |
| ************************************************************************* |
| * |
| * File Description |
| * ---------------- |
| * |
| * |
| ***************************************************************************/ |
| /******************************************************************************* |
| * Included header files |
| *******************************************************************************/ |
| #ifndef NR_HWSIM_STRUCT_H |
| #define NR_HWSIM_STRUCT_H |
| |
| #include "kal_public_api.h" |
| #include "nrvrf_intf.h" |
| |
| |
| typedef struct NrHwsimDlData_tag |
| { |
| Nrvrf_rxFilter_t rx_filter; |
| } NrHwsimDlData_t; |
| |
| |
| |
| typedef struct NrHwsimDlResourceReq_tag |
| { |
| Nrvrf_rxFilter_t rx_filter; |
| } NrHwsimDlResourceReq_t; |
| |
| typedef struct NrHwsimUlDataReq_tag |
| { |
| int dummy; |
| } NrHwsimUlDataReq_t; |
| |
| typedef struct NrHwsimUlResourceReq_tag |
| { |
| Nrvrf_txFilter_t tx_filter; |
| Nrvrf_txPayloadObject_t txPayLoadObject; |
| } NrHwsimUlResourceReq_t; |
| |
| #endif /* NR_HWSIM_STRUCT_H */ |