Home | History | Annotate | Download | only in ce

Lines Matching refs:nfcid2

296   /* Set system code and NFCID2 */
300 /* Set tag's system code and NFCID2 */
330 ** Description Generate a random NFCID2 for Type-3 tag
335 void nfa_ce_t3t_generate_rand_nfcid(uint8_t 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_t)(rand_seed & 0xFF);
344 nfcid2[3] = (uint8_t)(rand_seed >> 8 & 0xFF);
346 nfcid2[4] = (uint8_t)(rand_seed & 0xFF);
347 nfcid2[5] = (uint8_t)(rand_seed >> 8 & 0xFF);
349 nfcid2[6] = (uint8_t)(rand_seed & 0xFF);
350 nfcid2[7] = (uint8_t)(rand_seed >> 8 & 0xFF);
761 * code and NFCID2 */
769 /* Check if system_code and nfcid2 that matches activation params */
773 /* Compare NFCID2 (note: NFCC currently does not return system code in
776 p_cb->activation_params.rf_tech_param.param.lf.nfcid2,
1244 /* Store system code and nfcid2 */
1248 p_ce_msg->reg_listen.nfcid2, NCI_RF_F_UID_LEN);