rfid2 2.0.0.0
|
API for configuring and manipulating RFID 2 Click driver. More...
Topics | |
RFID 2 Device Settings | |
Settings for registers of RFID 2 Click driver. | |
RFID 2 MikroBUS Map | |
MikroBUS pin mapping of RFID 2 Click driver. | |
Functions | |
void | rfid2_cfg_setup (rfid2_cfg_t *cfg) |
RFID 2 configuration object setup function. | |
err_t | rfid2_init (rfid2_t *ctx, rfid2_cfg_t *cfg) |
RFID 2 initialization function. | |
err_t | rfid2_generic_write (rfid2_t *ctx, char *data_buf, uint16_t len) |
RFID 2 data writing function. | |
err_t | rfid2_generic_read (rfid2_t *ctx, char *data_buf, uint16_t max_len) |
RFID 2 data reading function. | |
uint8_t | rfid2_get_interrupt (rfid2_t *ctx) |
RFID 2 read state interrupt(INT) pin function. | |
void | rfid2_reset (rfid2_t *ctx) |
RFID 2 reset chip function. | |
API for configuring and manipulating RFID 2 Click driver.
Any initialization code needed for MCU to function properly. Do not remove this line or clock might not be set correctly.
void rfid2_cfg_setup | ( | rfid2_cfg_t * | cfg | ) |
RFID 2 configuration object setup function.
This function initializes click configuration structure to initial values.
[out] | cfg | : Click configuration structure. See rfid2_cfg_t object definition for detailed explanation. |
err_t rfid2_generic_read | ( | rfid2_t * | ctx, |
char * | data_buf, | ||
uint16_t | max_len ) |
RFID 2 data reading function.
This function reads a desired number of data bytes by using UART serial interface.
[in] | ctx | : Click context object. See rfid2_t object definition for detailed explanation. |
[out] | data_buf | : Output read data. |
[in] | max_len | : Number of bytes to be read. |
>0
- Number of data bytes read, <=0
- Error/Empty Ring buffer.err_t rfid2_generic_write | ( | rfid2_t * | ctx, |
char * | data_buf, | ||
uint16_t | len ) |
RFID 2 data writing function.
This function writes a desired number of data bytes by using UART serial interface.
[in] | ctx | : Click context object. See rfid2_t object definition for detailed explanation. |
[in] | data_buf | : Data buffer for sending. |
[in] | len | : Number of bytes for sending. |
>=0
- Success, <0
- Error.uint8_t rfid2_get_interrupt | ( | rfid2_t * | ctx | ) |
RFID 2 read state interrupt(INT) pin function.
This function read state interrupt(INT) pin.
[in] | ctx | : Click context object. See rfid2_t object definition for detailed explanation. |
err_t rfid2_init | ( | rfid2_t * | ctx, |
rfid2_cfg_t * | cfg ) |
RFID 2 initialization function.
This function initializes all necessary pins and peripherals used for this click board.
[out] | ctx | : Click context object. See rfid2_t object definition for detailed explanation. |
[in] | cfg | : Click configuration structure. See rfid2_cfg_t object definition for detailed explanation. |
0
- Success, -1
- Error.