| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- /* Copyright (c) 2015 Nordic Semiconductor. All Rights Reserved.
- *
- * The information contained herein is property of Nordic Semiconductor ASA.
- * Terms and conditions of usage are described in detail in NORDIC
- * SEMICONDUCTOR STANDARD SOFTWARE LICENSE AGREEMENT.
- *
- * Licensees are granted free, non-transferable use of the information. NO
- * WARRANTY of ANY KIND is provided. This heading must NOT be removed from
- * the file.
- *
- */
- #include <string.h>
- #include "nfc_uri_rec.h"
- #include "nrf_error.h"
- /**
- * @brief Type of description of the payload of a URI record.
- */
- typedef struct
- {
- nfc_uri_id_t uri_id_code; ///< URI identifier code.
- uint8_t const * p_uri_data; ///< Pointer to a URI string.
- uint8_t uri_data_len; ///< Length of the URI string.
- } uri_payload_desc_t;
- /**
- * @brief Function for constructing the payload for a URI record.
- *
- * This function encodes the payload according to the URI record definition. It implements an API
- * compatible with @ref p_payload_constructor_t.
- *
- * @param[in] p_input Pointer to the description of the payload.
- * @param[out] p_buff Pointer to payload destination.
- *
- * @param[in,out] p_len Size of available memory to write as input. Size of generated
- * payload as output.
- *
- * @retval NRF_SUCCESS If the payload was encoded successfully.
- * @retval NRF_ERROR_NO_MEM If the predicted payload size is bigger than the provided buffer space.
- */
- static ret_code_t nfc_uri_payload_constructor( uri_payload_desc_t * p_input,
- uint8_t * p_buff,
- uint32_t * p_len)
- {
- /* Verify if there is enough available memory */
- if(p_input->uri_data_len >= *p_len)
- {
- return NRF_ERROR_NO_MEM;
- }
- /* Copy descriptor content into the buffer */
- *p_len = p_input->uri_data_len + 1;
- *(p_buff++) = p_input->uri_id_code;
- memcpy(p_buff, p_input->p_uri_data, p_input->uri_data_len );
-
- return NRF_SUCCESS;
- }
- nfc_ndef_record_desc_t * nfc_uri_rec_declare( nfc_uri_id_t uri_id_code,
- uint8_t const * const p_uri_data,
- uint8_t uri_data_len)
- {
- static uri_payload_desc_t uri_payload_desc;
- static const uint8_t static_uri_type = 'U';
-
- NFC_NDEF_GENERIC_RECORD_DESC_DEF( uri_rec,
- TNF_WELL_KNOWN, // tnf <- well-known
- NULL,
- 0, // no id
- &static_uri_type,
- 1, // type size 1B
- nfc_uri_payload_constructor,
- &uri_payload_desc);
-
- uri_payload_desc.uri_id_code = uri_id_code;
- uri_payload_desc.p_uri_data = p_uri_data;
- uri_payload_desc.uri_data_len = uri_data_len;
-
- return &NFC_NDEF_GENERIC_RECORD_DESC( uri_rec);
- }
|