1############################################################################### 2# Application options 3NFC_DEBUG_ENABLED=0 4 5############################################################################### 6# File used for NFA storage 7NFA_STORAGE="/data/nfc" 8 9############################################################################### 10# Force UICC to only listen to the following technology(s). 11# The bits are defined as tNFA_TECHNOLOGY_MASK in nfa_api.h. 12# Default is NFA_TECHNOLOGY_MASK_A | NFA_TECHNOLOGY_MASK_B | NFA_TECHNOLOGY_MASK_F 13UICC_LISTEN_TECH_MASK=0x07 14 15############################################################################### 16# AID for Empty Select command 17# If specified, this AID will be substituted when an Empty SELECT command is 18# detected. The first byte is the length of the AID. Maximum length is 16. 19AID_FOR_EMPTY_SELECT={08:A0:00:00:01:51:00:00:00} 20 21############################################################################### 22# When screen is turned off, specify the desired power state of the controller. 23# 0: power-off-sleep state; DEFAULT 24# 1: full-power state 25# 2: screen-off card-emulation (CE4/CE3/CE1 modes are used) 26SCREEN_OFF_POWER_STATE=1 27 28############################################################################### 29# Force tag polling for the following technology(s). 30# The bits are defined as tNFA_TECHNOLOGY_MASK in nfa_api.h. 31# Default is NFA_TECHNOLOGY_MASK_A | NFA_TECHNOLOGY_MASK_B | 32# NFA_TECHNOLOGY_MASK_F | NFA_TECHNOLOGY_MASK_ISO15693 | 33# NFA_TECHNOLOGY_MASK_B_PRIME | NFA_TECHNOLOGY_MASK_KOVIO | 34# NFA_TECHNOLOGY_MASK_ACTIVE 35# 36# Notable bits: 37# NFA_TECHNOLOGY_MASK_A 0x01 /* NFC Technology A */ 38# NFA_TECHNOLOGY_MASK_B 0x02 /* NFC Technology B */ 39# NFA_TECHNOLOGY_MASK_F 0x04 /* NFC Technology F */ 40# NFA_TECHNOLOGY_MASK_ISO15693 0x08 /* Proprietary Technology */ 41# NFA_TECHNOLOGY_MASK_KOVIO 0x20 /* Proprietary Technology */ 42# NFA_TECHNOLOGY_MASK_ACTIVE 0x40 /* NFC Technology Active */ 43POLLING_TECH_MASK=0x2F 44 45############################################################################### 46# Force P2P to only listen for the following technology(s). 47# The bits are defined as tNFA_TECHNOLOGY_MASK in nfa_api.h. 48# Default is NFA_TECHNOLOGY_MASK_A | NFA_TECHNOLOGY_MASK_F | 49# NFA_TECHNOLOGY_MASK_ACTIVE 50# 51# Notable bits: 52# NFA_TECHNOLOGY_MASK_A 0x01 /* NFC Technology A */ 53# NFA_TECHNOLOGY_MASK_F 0x04 /* NFC Technology F */ 54# NFA_TECHNOLOGY_MASK_ACTIVE 0x40 /* NFC Technology Active */ 55P2P_LISTEN_TECH_MASK=0x00 56 57PRESERVE_STORAGE=0x01 58 59############################################################################### 60# Override the stack default for NFA_EE_MAX_EE_SUPPORTED set in nfc_target.h. 61# The value is set to 3 by default as it assumes we will discover 0xF2, 62# 0xF3, and 0xF4. If a platform will exclude and SE, this value can be reduced 63# so that the stack will not wait any longer than necessary. 64# Maximum EE supported number 65# NXP PN547C2 0x02 66# NXP PN65T 0x03 67# NXP PN548C2 0x02 68# NXP PN66T 0x03 69NFA_MAX_EE_SUPPORTED=0x02 70 71############################################################################### 72# AID_MATCHING constants 73# AID_MATCHING_EXACT_ONLY 0x00 74# AID_MATCHING_EXACT_OR_PREFIX 0x01 75# AID_MATCHING_PREFIX_ONLY 0x02 76# AID_MATCHING_EXACT_OR_SUBSET_OR_PREFIX 0x03 77AID_MATCHING_MODE=0x03 78 79############################################################################### 80#Set the default Felica T3T System Code : 81#This settings will be used when application does not set this parameter 82DEFAULT_SYS_CODE={FE:FE} 83 84############################################################################### 85# Value of NIC parameter NFCC_COFNIG_CONTROL 86# 0x00 NFCC is not allowed to manage RF configuration 87# 0x01 NFCC is allowed to manage RF configuration 88NFCC_CONFIG_CONTROL=0x01 89 90############################################################################### 91#Set if the AID routing should be blocked for the power modes not supported. 92NFA_AID_BLOCK_ROUTE=1 93 94############################################################################### 95#Set the OffHost AID supported power state: 96OFFHOST_AID_ROUTE_PWR_STATE=0x3B 97 98############################################################################### 99# Mifare Tag implementation 100# 0: General implementation 101# 1: Legacy implementation 102LEGACY_MIFARE_READER=0 103