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