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 SN2xx 0x06
53NFA_MAX_EE_SUPPORTED=0x06
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###############################################################################
68# NCI_RESET_TYPE options
69# Default 0x00, reset configurations everytime.
70# 0x01, reset configurations only once every boot.
71# 0x02, keep configurations.
72NCI_RESET_TYPE=0x02
73
74################################################################################
75#Set bit to 1 , block list is enabled
76#Set bit to 0,  to disable block list
77NFA_AID_BLOCK_ROUTE=0x00
78
79###############################################################################
80#Set the OffHost AID supported power state:
81OFFHOST_AID_ROUTE_PWR_STATE=0x3B
82
83################################################################################
84# Maximum WTX requests entertained by MW
85NXP_WM_MAX_WTX_COUNT=30
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#Set NCI credit notification timeout value
92NXP_NCI_CREDIT_NTF_TIMEOUT=2
93###############################################################################
94# Set presence check retry count value. Value Range: 0 to 5
95# This value indicates the number of time presence check is repeated in case of
96# failure
97PRESENCE_CHECK_RETRY_COUNT=0
98#########################################################################
99# Tech route options
100# 0x00, Route mute techs to DH, enable block bit and set power state to 0x00
101# 0x01, Remove mute techs from rf discover cmd
102MUTE_TECH_ROUTE_OPTION=0x01
103##############################################################################
104# Forcing HOST to listen for a selected protocol
105# 0x00 : Disable Host Listen
106# 0x01 : Enable Host to Listen (A)  for ISO-DEP tech A
107# 0x02 : Enable Host to Listen (B)  for ISO-DEP tech B
108# 0x04 : Enable Host to Listen (F)  for T3T Tag Type Protocol tech F
109# 0x07 : Enable Host to Listen (ABF)for ISO-DEP tech AB & T3T Tag Type Protocol tech F
110HOST_LISTEN_TECH_MASK=0x07
111##############################################################################
112# Config option to skip ISO15693 GET_SYS_INFO command as NFC forum tool does
113# not support this command
114# 0 to Disable this behaviour
115# 1 to Enable this behaviour
116ISO15693_SKIP_GET_SYS_INFO_CMD=0
117##############################################################################
118# Deactivate notification wait time out in seconds used in listen active state
119# Default is 8sec if not set or set as 0 (see nfc_target.h)
120NFA_DM_LISTEN_ACTIVE_DEACT_NTF_TIMEOUT=3
121##############################################################################
122