Home | History | Annotate | Download | only in src

Lines Matching refs:uint8_t

131     uint8_t                     *p_recv_buf, 
132 uint8_t recv_length);
138 uint8_t command,
139 uint8_t *p_data,
140 uint8_t data_length);
149 uint8_t command,
150 uint8_t *p_data,
151 uint8_t data_length)
154 uint8_t send_index = 0;
169 *(psNdefSmtCrdFmt->SendRecvBuf + send_index) = (uint8_t)ISO15693_FMT_FLAGS;
170 send_index = (uint8_t)(send_index + 1);
172 *(psNdefSmtCrdFmt->SendRecvBuf + send_index) = (uint8_t)command;
173 send_index = (uint8_t)(send_index + 1);
178 send_index = (uint8_t)(send_index +
186 *(psNdefSmtCrdFmt->SendRecvBuf + send_index) = (uint8_t)
188 send_index = (uint8_t)(send_index + 1);
194 send_index = (uint8_t)(send_index + data_length);
206 *(psNdefSmtCrdFmt->SendRecvBuf + send_index) = (uint8_t)
208 send_index = (uint8_t)(send_index + 1);
248 uint8_t *p_recv_buf,
249 uint8_t recv_length)
256 uint8_t recv_index = 0;
261 uint8_t information_flag = *p_recv_buf;
264 recv_index = (uint8_t)(recv_index + 1);
271 uint8_t no_of_blocks = 0;
272 uint8_t blk_size_in_bytes = 0;
273 uint8_t ic_reference = 0;
276 recv_index = (uint8_t)(recv_index +
281 recv_index = (uint8_t)(recv_index + ISO15693_SKIP_DFSID);
285 recv_index = (uint8_t)(recv_index + ISO15693_SKIP_AFI);
289 no_of_blocks = (uint8_t)(*(p_recv_buf + recv_index) + 1);
290 recv_index = (uint8_t)(recv_index + 1);
293 blk_size_in_bytes = (uint8_t)((*(p_recv_buf + recv_index)
295 recv_index = (uint8_t)(recv_index + 1);
299 ic_reference = (uint8_t)(*(p_recv_buf + recv_index));
337 uint8_t command_type = 0;
338 uint8_t a_send_byte[ISO15693_BYTES_PER_BLOCK] = {0};
339 uint8_t send_length = 0;
340 uint8_t send_index = 0;
341 uint8_t format_complete = FALSE;
351 (uint8_t)(*psNdefSmtCrdFmt->SendRecvLength -
393 *a_send_byte = (uint8_t)ISO15693_CC_MAGIC_NUM;
394 send_index = (uint8_t)(send_index + 1);
397 *(a_send_byte + send_index) = (uint8_t) ISO15693_CC_VER_RW;
398 send_index = (uint8_t)(send_index + 1);
401 *(a_send_byte + send_index) = (uint8_t) (ps_iso15693_info->max_data_size / ISO15693_CC_MULTIPLE_FACTOR);
402 send_index = (uint8_t)(send_index + 1);
409 *(a_send_byte + send_index) = (uint8_t) ISO15693_RDMULBLKS_CMD_MASK;
416 *(a_send_byte + send_index) = (uint8_t) ISO15693_INVENTORY_CMD_MASK;
423 *(a_send_byte + send_index) = (uint8_t) ISO15693_INVENTORY_CMD_MASK;
434 send_index = (uint8_t)(send_index + 1);
453 *a_send_byte = (uint8_t)ISO15693_NDEF_TLV_TYPE_ID;
454 send_index = (uint8_t)(send_index + 1);
458 send_index = (uint8_t)(send_index + 1);
461 *(a_send_byte + send_index) = (uint8_t)
463 send_index = (uint8_t)(send_index + 1);
490 ps_iso15693_info->format_seq = (uint8_t)e_format_seq;