1########################## Start of libnfc-nci.conf ########################### 2############################################################################### 3# Application options 4NFC_DEBUG_ENABLED=1 5 6############################################################################### 7# File used for NFA storage 8NFA_STORAGE="/data/nfc" 9############################################################################### 10## Default poll duration (in ms) 11## The default is 500ms if not set 12NFA_DM_DISC_DURATION_POLL=500 13 14############################################################################### 15# Force UICC to only listen to the following technology(s). 16# The bits are defined as tNFA_TECHNOLOGY_MASK in nfa_api.h. 17# Default is NFA_TECHNOLOGY_MASK_A | NFA_TECHNOLOGY_MASK_B | NFA_TECHNOLOGY_MASK_F 18UICC_LISTEN_TECH_MASK=0x07 19 20############################################################################### 21# When screen is turned off, specify the desired power state of the controller. 22# 0: power-off-sleep state; DEFAULT 23# 1: full-power state 24# 2: screen-off card-emulation (CE4/CE3/CE1 modes are used) 25SCREEN_OFF_POWER_STATE=1 26############################################################################### 27# Force tag polling for the following technology(s). 28# The bits are defined as tNFA_TECHNOLOGY_MASK in nfa_api.h. 29# Default is NFA_TECHNOLOGY_MASK_A | NFA_TECHNOLOGY_MASK_B | 30# NFA_TECHNOLOGY_MASK_F | NFA_TECHNOLOGY_MASK_ISO15693 | 31# NFA_TECHNOLOGY_MASK_B_PRIME | 32# NFA_TECHNOLOGY_MASK_A_ACTIVE | NFA_TECHNOLOGY_MASK_F_ACTIVE. 33# 34# Notable bits: 35# NFA_TECHNOLOGY_MASK_A 0x01 /* NFC Technology A */ 36# NFA_TECHNOLOGY_MASK_B 0x02 /* NFC Technology B */ 37# NFA_TECHNOLOGY_MASK_F 0x04 /* NFC Technology F */ 38# NFA_TECHNOLOGY_MASK_ISO15693 0x08 /* Proprietary Technology */ 39POLLING_TECH_MASK=0x0F 40 41############################################################################### 42PRESERVE_STORAGE=0x01 43############################################################################### 44# Override the stack default for NFA_EE_MAX_EE_SUPPORTED set in nfc_target.h. 45# The value is set to 3 by default as it assumes we will discover 0xF2, 46# 0xF3, and 0xF4. If a platform will exclude and SE, this value can be reduced 47# so that the stack will not wait any longer than necessary. 48 49# Maximum EE supported number 50# NXP PN557 0x04 51# NXP SN1xx 0x06 52# NXP PN560 0x04 53NFA_MAX_EE_SUPPORTED=0x04 54############################################################################## 55# Deactivate notification wait time out in seconds used in ETSI Reader mode 56# 0 - Infinite wait 57NFA_DM_DISC_NTF_TIMEOUT=0 58 59############################################################################### 60# AID_MATCHING constants 61# AID_MATCHING_EXACT_ONLY 0x00 62# AID_MATCHING_EXACT_OR_PREFIX 0x01 63# AID_MATCHING_PREFIX_ONLY 0x02 64#AID_MATCHING_EXACT_OR_SUBSET_OR_PREFIX 0x03 65AID_MATCHING_MODE=0x03 66################################################################################ 67#Set bit to 1 , block list is enabled 68#Set bit to 0, to disable block list 69NFA_AID_BLOCK_ROUTE=0x00 70 71############################################################################### 72#Set the OffHost AID supported power state: 73OFFHOST_AID_ROUTE_PWR_STATE=0x3B 74 75################################################################################ 76# Maximum WTX requests entertained by MW 77NXP_WM_MAX_WTX_COUNT=30 78################################################################################ 79#Set the default Felica T3T System Code : 80#This settings will be used when application does not set this parameter 81DEFAULT_SYS_CODE={FE:FE} 82######################################################################### 83#Set NCI credit notification timeout value 84NXP_NCI_CREDIT_NTF_TIMEOUT=2 85############################################################################### 86# Set presence check retry count value. Value Range: 0 to 5 87# This value indicates the number of time presence check is repeated in case of 88# failure 89PRESENCE_CHECK_RETRY_COUNT=0 90######################################################################### 91# Tech route options 92# 0x00, Route mute techs to DH, enable block bit and set power state to 0x00 93# 0x01, Remove mute techs from rf discover cmd 94MUTE_TECH_ROUTE_OPTION=0x01 95############################################################################## 96# Forcing HOST to listen for a selected protocol 97# 0x00 : Disable Host Listen 98# 0x01 : Enable Host to Listen (A) for ISO-DEP tech A 99# 0x02 : Enable Host to Listen (B) for ISO-DEP tech B 100# 0x04 : Enable Host to Listen (F) for T3T Tag Type Protocol tech F 101# 0x07 : Enable Host to Listen (ABF)for ISO-DEP tech AB & T3T Tag Type Protocol tech F 102HOST_LISTEN_TECH_MASK=0x07 103############################################################################## 104# Config option to skip ISO15693 GET_SYS_INFO command as NFC forum tool does 105# not support this command 106# 0 to Disable this behaviour 107# 1 to Enable this behaviour 108ISO15693_SKIP_GET_SYS_INFO_CMD=0 109############################################################################## 110# Deactivate notification wait time out in seconds used in listen active state 111# Default is 8sec if not set or set as 0 (see nfc_target.h) 112NFA_DM_LISTEN_ACTIVE_DEACT_NTF_TIMEOUT=3 113############################################################################## 114