1 /****************************************************************************** 2 * 3 * Copyright 2018-2019,2022 NXP 4 * 5 * Licensed under the Apache License, Version 2.0 (the "License"); 6 * you may not use this file except in compliance with the License. 7 * You may obtain a copy of the License at 8 * 9 * http://www.apache.org/licenses/LICENSE-2.0 10 * 11 * Unless required by applicable law or agreed to in writing, software 12 * distributed under the License is distributed on an "AS IS" BASIS, 13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 * See the License for the specific language governing permissions and 15 * limitations under the License. 16 * 17 ******************************************************************************/ 18 #ifndef _PHNXPESE_RECVMGR_H_ 19 #define _PHNXPESE_RECVMGR_H_ 20 #include <phNxpEse_Internal.h> 21 22 /*! 23 * \brief eSE Data buffer structure 24 * 25 * 26 */ 27 typedef struct phNxpEse_DataPacket { 28 uint8_t sbuffer[MAX_DATA_LEN]; /*!<buffer to be used to store the received 29 packet */ 30 uint16_t wLen; /*!<hold the length of the buffer */ 31 } phNxpEse_DataPacket_t; 32 33 /*! 34 * \brief eSE data receive buffer linkedlist 35 * 36 * 37 */ 38 typedef struct phNxpEse_sCoreRecvBuff_List { 39 phNxpEse_DataPacket_t 40 tData; /*!<buffer to be used to store the received payload */ 41 struct phNxpEse_sCoreRecvBuff_List* 42 pNext; /*!<pointer to the next node present in lined list*/ 43 } phNxpEse_sCoreRecvBuff_List_t; 44 45 ESESTATUS phNxpEse_GetData(uint32_t* data_len, uint8_t** pbuff); 46 ESESTATUS phNxpEse_StoreDatainList(uint32_t data_len, uint8_t* pbuff); 47 void phNxpEse_FlushData(); 48 49 #endif /* PHNXPESE_RECVMGR_H */ 50