Home | History | Annotate | Download | only in ce

Lines Matching refs:nfcid2

296     /* Set system code and NFCID2 */
302 /* Set tag's system code and NFCID2 */
329 ** Description Generate a random NFCID2 for Type-3 tag
334 void nfa_ce_t3t_generate_rand_nfcid (UINT8 nfcid2[NCI_RF_F_UID_LEN])
338 /* For Type-3 tag, nfcid2 starts witn 02:fe */
339 nfcid2[0] = 0x02;
340 nfcid2[1] = 0xFE;
343 nfcid2[2] = (UINT8) (rand_seed & 0xFF);
344 nfcid2[3] = (UINT8) (rand_seed>>8 & 0xFF);
346 nfcid2[4] = (UINT8) (rand_seed & 0xFF);
347 nfcid2[5] = (UINT8) (rand_seed>>8 & 0xFF);
349 nfcid2[6] = (UINT8) (rand_seed & 0xFF);
350 nfcid2[7] = (UINT8) (rand_seed>>8 & 0xFF);
769 /* Look for T3T entries in listen_info table that match activated system code and NFCID2 */
777 /* Check if system_code and nfcid2 that matches activation params */
781 /* Compare NFCID2 (note: NFCC currently does not return system code in activation parameters) */
782 if ((memcmp (p_nfcid2, p_cb->activation_params.rf_tech_param.param.lf.nfcid2, NCI_RF_F_UID_LEN)==0)
1245 /* Store system code and nfcid2 */
1247 memcpy (p_cb->listen_info[listen_info_idx].t3t_nfcid2, p_ce_msg->reg_listen.nfcid2, NCI_RF_F_UID_LEN);