1
mirror of https://github.com/flipperdevices/flipperzero-firmware.git synced 2025-12-13 05:19:50 +04:00
Files
flipperzero-firmware/lib/nfc/protocols/st25tb/st25tb_poller.h

31 lines
475 B
C
Raw Normal View History

#pragma once
#include "st25tb.h"
#include <lib/nfc/nfc.h>
#include <nfc/nfc_poller.h>
#ifdef __cplusplus
extern "C" {
#endif
typedef struct St25tbPoller St25tbPoller;
typedef enum {
St25tbPollerEventTypeError,
St25tbPollerEventTypeReady,
} St25tbPollerEventType;
typedef struct {
St25tbError error;
} St25tbPollerEventData;
typedef struct {
St25tbPollerEventType type;
St25tbPollerEventData* data;
} St25tbPollerEvent;
#ifdef __cplusplus
}
#endif