mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-27 15:00:46 +00:00
c00776ca22
* drivers: expose st25r3916 driver API * nfc poller: add start with custom callback * mf classic: rework sync API with poller custom start * mf ultralight: rework sync API with poller custom start * iso14443_3a poller: remove unused col res state * nfc: rework nfc poller custom start * mf ultralight: rename sync API * mf classic: rename sync API * iso14443-3a: rename sync API * nfc: remove async prefix in internal functions * nfc: expose internal API * nfc: fix sync api include and docs * targets: fix f18 build * nfc: rework NfcGenericEventEx type * nfc poller: add documentation * iso14443-3a poller: add documentation * felica poller: add documentation * iso14443_3b poller: add documentation * so14443_4a poller: add documentation * iso14443_4b poller: add documentation * iso15693 poller: add documentation * slix poller: add documentation * mf desfire poller: add documentation * mf ultralight poller: fix API and add documentation * mf classic poller: add documentation Co-authored-by: あく <alleteam@gmail.com>
85 lines
2.5 KiB
C
85 lines
2.5 KiB
C
#pragma once
|
|
|
|
#include "slix.h"
|
|
|
|
#include <nfc/nfc_poller.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/**
|
|
* @brief SlixPoller opaque type definition.
|
|
*/
|
|
typedef struct SlixPoller SlixPoller;
|
|
|
|
/**
|
|
* @brief Enumeration of possible Slix poller event types.
|
|
*/
|
|
typedef enum {
|
|
SlixPollerEventTypeError, /**< An error occured while reading card. */
|
|
SlixPollerEventTypeReady, /**< The card was successfully read by the poller. */
|
|
} SlixPollerEventType;
|
|
|
|
/**
|
|
* @brief Slixs poller event data.
|
|
*/
|
|
typedef union {
|
|
SlixError error; /**< Error code indicating card reaing fail reason. */
|
|
} SlixPollerEventData;
|
|
|
|
/**
|
|
* @brief Slix poller event structure.
|
|
*
|
|
* Upon emission of an event, an instance of this struct will be passed to the callback.
|
|
*/
|
|
typedef struct {
|
|
SlixPollerEventType type; /**< Type of emmitted event. */
|
|
SlixPollerEventData* data; /**< Pointer to event specific data. */
|
|
} SlixPollerEvent;
|
|
|
|
/**
|
|
* @brief Transmit and receive Slix frames in poller mode.
|
|
*
|
|
* Must ONLY be used inside the callback function.
|
|
*
|
|
* The rx_buffer will be filled with any data received as a response to data
|
|
* sent from tx_buffer, with a timeout defined by the fwt parameter.
|
|
*
|
|
* @param[in, out] instance pointer to the instance to be used in the transaction.
|
|
* @param[in] tx_buffer pointer to the buffer containing the data to be transmitted.
|
|
* @param[out] rx_buffer pointer to the buffer to be filled with received data.
|
|
* @param[in] fwt frame wait time (response timeout), in carrier cycles.
|
|
* @return SlixErrorNone on success, an error code on failure.
|
|
*/
|
|
SlixError slix_poller_send_frame(
|
|
SlixPoller* instance,
|
|
const BitBuffer* tx_data,
|
|
BitBuffer* rx_data,
|
|
uint32_t fwt);
|
|
|
|
/**
|
|
* @brief Send get nxp system info command and parse response.
|
|
*
|
|
* Must ONLY be used inside the callback function.
|
|
*
|
|
* @param[in, out] instance pointer to the instance to be used in the transaction.
|
|
* @param[out] data pointer to the SlixSystemInfo structure to be filled.
|
|
* @return SlixErrorNone on success, an error code on failure.
|
|
*/
|
|
SlixError slix_poller_get_nxp_system_info(SlixPoller* instance, SlixSystemInfo* data);
|
|
|
|
/**
|
|
* @brief Read signature from card.
|
|
*
|
|
* Must ONLY be used inside the callback function.
|
|
*
|
|
* @param[in, out] instance pointer to the instance to be used in the transaction.
|
|
* @param[out] data pointer to the SlixSignature structure to be filled.
|
|
* @return SlixErrorNone on success, an error code on failure.
|
|
*/
|
|
SlixError slix_poller_read_signature(SlixPoller* instance, SlixSignature* data);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|