1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- #ifndef NFC_URI_MSG_H__
- #define NFC_URI_MSG_H__
- #include "nfc_ndef_msg.h"
- #include "nfc_uri_rec.h"
- #include "nrf_error.h"
- #ifdef __cplusplus
- extern "C" {
- #endif
- ret_code_t nfc_uri_msg_encode( nfc_uri_id_t uri_id_code,
- uint8_t const * const p_uri_data,
- uint8_t uri_data_len,
- uint8_t * p_buf,
- uint32_t * p_len);
- #ifdef __cplusplus
- }
- #endif
- #endif
|