45 lines
2.0 KiB
Plaintext
45 lines
2.0 KiB
Plaintext
/*----------------------------------------------------------------------------*/
|
|
/* Copyright 2016-2021 NXP */
|
|
/* */
|
|
/* NXP Confidential. This software is owned or controlled by NXP and may only */
|
|
/* be used strictly in accordance with the applicable license terms. */
|
|
/* By expressly accepting such terms or by downloading, installing, */
|
|
/* activating and/or otherwise using the software, you are agreeing that you */
|
|
/* have read, and that you agree to comply with and are bound by, such */
|
|
/* license terms. If you do not agree to be bound by the applicable license */
|
|
/* terms, then you may not retain, install, activate or otherwise use the */
|
|
/* software. */
|
|
/*----------------------------------------------------------------------------*/
|
|
|
|
/** \file
|
|
* Example Source Header for ISO10373-6 PCD compliance application.
|
|
*
|
|
* $Author: NXP $
|
|
* $Revision: $ (v07.10.00)
|
|
* $Date: $
|
|
*/
|
|
|
|
#ifndef INTFS_NFCRDLIB_ISO10373_6_PCD_COMPLAPP_H_
|
|
#define INTFS_NFCRDLIB_ISO10373_6_PCD_COMPLAPP_H_
|
|
#include <ph_Status.h>
|
|
|
|
#ifdef PH_OSAL_FREERTOS
|
|
#ifdef PHOSAL_FREERTOS_STATIC_MEM_ALLOCATION
|
|
#define ISO10373_PCD_TASK_STACK (2200/4)
|
|
#else /* PHOSAL_FREERTOS_STATIC_MEM_ALLOCATION */
|
|
#if defined( __PN74XXXX__) || defined(__PN76XX__)
|
|
#define ISO10373_PCD_TASK_STACK (2000/4)
|
|
#else /* defined( __PN74XXXX__) || defined(__PN76XX__) */
|
|
#define ISO10373_PCD_TASK_STACK (2050)
|
|
#endif /* defined( __PN74XXXX__) || defined(__PN76XX__) */
|
|
#endif /* PHOSAL_FREERTOS_STATIC_MEM_ALLOCATION */
|
|
#define ISO10373_PCD_TASK_PRIO 4
|
|
#endif /* PH_OSAL_FREERTOS */
|
|
|
|
#ifdef PH_OSAL_LINUX
|
|
#define ISO10373_PCD_TASK_STACK 0x20000
|
|
#define ISO10373_PCD_TASK_PRIO 0
|
|
#endif /* PH_OSAL_LINUX */
|
|
|
|
#endif /* INTFS_NFCRDLIB_ISO10373_6_PCD_COMPLAPP_H_ */
|