| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- /******************************************************************************
- * \attention
- *
- * <h2><center>© COPYRIGHT 2020 STMicroelectronics</center></h2>
- *
- * Licensed under ST MYLIBERTY SOFTWARE LICENSE AGREEMENT (the "License");
- * You may not use this file except in compliance with the License.
- * You may obtain a copy of the License at:
- *
- * www.st.com/myliberty
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied,
- * AND SPECIFICALLY DISCLAIMING THE IMPLIED WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- *
- ******************************************************************************/
- /*
- * PROJECT: ST25R391x firmware
- * Revision:
- * LANGUAGE: ISO C99
- */
- /*! \file rfal_t2t.h
- *
- * \author Gustavo Patricio
- *
- * \brief Provides NFC-A T2T convenience methods and definitions
- *
- * This module provides an interface to perform as a NFC-A Reader/Writer
- * to handle a Type 2 Tag T2T
- *
- *
- * \addtogroup RFAL
- * @{
- *
- * \addtogroup RFAL-AL
- * \brief RFAL Abstraction Layer
- * @{
- *
- * \addtogroup T2T
- * \brief RFAL T2T Module
- * @{
- *
- */
- #ifndef RFAL_T2T_H
- #define RFAL_T2T_H
- /*
- ******************************************************************************
- * INCLUDES
- ******************************************************************************
- */
- #include "../platform.h"
- #include "../st_errno.h"
- #include "rfal_rf.h"
- /*
- ******************************************************************************
- * GLOBAL DEFINES
- ******************************************************************************
- */
- #define RFAL_T2T_BLOCK_LEN 4U /*!< T2T block length */
- #define RFAL_T2T_READ_DATA_LEN (4U * RFAL_T2T_BLOCK_LEN) /*!< T2T READ data length */
- #define RFAL_T2T_WRITE_DATA_LEN RFAL_T2T_BLOCK_LEN /*!< T2T WRITE data length */
- /*
- ******************************************************************************
- * GLOBAL TYPES
- ******************************************************************************
- */
- /*
- ******************************************************************************
- * GLOBAL FUNCTION PROTOTYPES
- ******************************************************************************
- */
- /*!
- *****************************************************************************
- * \brief NFC-A T2T Poller Read
- *
- * This method sends a Read command to a NFC-A T2T Listener device
- *
- *
- * \param[in] blockNum : Number of the block to read
- * \param[out] rxBuf : pointer to place the read data
- * \param[in] rxBufLen : size of rxBuf (RFAL_T2T_READ_DATA_LEN)
- * \param[out] rcvLen : actual received data
- *
- * \return ERR_WRONG_STATE : RFAL not initialized or mode not set
- * \return ERR_PARAM : Invalid parameter
- * \return ERR_PROTO : Protocol error
- * \return ERR_NONE : No error
- *****************************************************************************
- */
- ReturnCode
- rfalT2TPollerRead(uint8_t blockNum, uint8_t* rxBuf, uint16_t rxBufLen, uint16_t* rcvLen);
- /*!
- *****************************************************************************
- * \brief NFC-A T2T Poller Write
- *
- * This method sends a Write command to a NFC-A T2T Listener device
- *
- *
- * \param[in] blockNum : Number of the block to write
- * \param[in] wrData : data to be written on the given block
- * size must be of RFAL_T2T_WRITE_DATA_LEN
- *
- * \return ERR_WRONG_STATE : RFAL not initialized or mode not set
- * \return ERR_PARAM : Invalid parameter
- * \return ERR_PROTO : Protocol error
- * \return ERR_NONE : No error
- *****************************************************************************
- */
- ReturnCode rfalT2TPollerWrite(uint8_t blockNum, const uint8_t* wrData);
- /*!
- *****************************************************************************
- * \brief NFC-A T2T Poller Sector Select
- *
- * This method sends a Sector Select commands to a NFC-A T2T Listener device
- *
- * \param[in] sectorNum : Sector Number
- *
- * \return ERR_WRONG_STATE : RFAL not initialized or mode not set
- * \return ERR_PARAM : Invalid parameter
- * \return ERR_PROTO : Protocol error
- * \return ERR_NONE : No error
- *****************************************************************************
- */
- ReturnCode rfalT2TPollerSectorSelect(uint8_t sectorNum);
- #endif /* RFAL_T2T_H */
- /**
- * @}
- *
- * @}
- *
- * @}
- */
|