mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2024-12-24 22:07:14 +03:00
d92b0a82cc
"A long time ago in a galaxy far, far away...." we started NFC subsystem refactoring. Starring: - @gornekich - NFC refactoring project lead, architect, senior developer - @gsurkov - architect, senior developer - @RebornedBrain - senior developer Supporting roles: - @skotopes, @DrZlo13, @hedger - general architecture advisors, code review - @Astrrra, @doomwastaken, @Hellitron, @ImagineVagon333 - quality assurance Special thanks: @bettse, @pcunning, @nxv, @noproto, @AloneLiberty and everyone else who has been helping us all this time and contributing valuable knowledges, ideas and source code.
30 lines
494 B
C
30 lines
494 B
C
#pragma once
|
|
|
|
#include "iso15693_3.h"
|
|
|
|
#include <nfc/nfc_poller.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct Iso15693_3Poller Iso15693_3Poller;
|
|
|
|
typedef enum {
|
|
Iso15693_3PollerEventTypeError,
|
|
Iso15693_3PollerEventTypeReady,
|
|
} Iso15693_3PollerEventType;
|
|
|
|
typedef struct {
|
|
Iso15693_3Error error;
|
|
} Iso15693_3PollerEventData;
|
|
|
|
typedef struct {
|
|
Iso15693_3PollerEventType type;
|
|
Iso15693_3PollerEventData* data;
|
|
} Iso15693_3PollerEvent;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|