The NFCEEPROM delegate. More...
#include <NFCEEPROM.h>
Public Member Functions | |
virtual void | on_ndef_message_erased (nfc_err_t result) |
The NDEF message erasing request completed. More... | |
virtual void | on_ndef_message_written (nfc_err_t result) |
The NDEF message writing request completed. More... | |
virtual void | on_ndef_message_read (nfc_err_t result) |
The NDEF message reading request completed. More... | |
virtual void | parse_ndef_message (const Span< const uint8_t > &buffer) |
Parse a NDEF message. More... | |
virtual size_t | build_ndef_message (const Span< uint8_t > &buffer) |
Build a NDEF message. More... | |
The NFCEEPROM delegate.
Users of the NFCEEPROM class need to implement this delegate's methods to receive events.
Definition at line 60 of file NFCEEPROM.h.
|
virtualinherited |
Build a NDEF message.
[in] | buffer | a mutable buffer in which the message should be stored |
Reimplemented in NFCProcessController.
Definition at line 76 of file NFCNDEFCapable.h.
|
virtual |
The NDEF message erasing request completed.
[in] | result | NFC_OK or an error code on failure |
Reimplemented from NFCTarget::Delegate.
Definition at line 66 of file NFCEEPROM.h.
|
virtual |
The NDEF message reading request completed.
[in] | result | NFC_OK or an error code on failure |
Reimplemented from NFCTarget::Delegate.
Definition at line 80 of file NFCEEPROM.h.
|
virtual |
The NDEF message writing request completed.
[in] | result | NFC_OK or an error code on failure |
Reimplemented from NFCTarget::Delegate.
Definition at line 73 of file NFCEEPROM.h.
|
virtualinherited |
Parse a NDEF message.
[in] | buffer | a buffer containing the message to parse |
Reimplemented in NFCProcessController.
Definition at line 67 of file NFCNDEFCapable.h.