board/sg-nfc.c: Use non-hardcoded UID

Turns out this does in fact vary between cards, even though its
actual value is unimportant.
This commit is contained in:
Tau
2018-12-17 17:09:56 -05:00
parent 9159be00a2
commit 755be05603
3 changed files with 27 additions and 11 deletions

View File

@ -8,7 +8,7 @@
#include "hook/iobuf.h"
struct sg_nfc_ops {
HRESULT (*mifare_poll)(void *ctx);
HRESULT (*mifare_poll)(void *ctx, uint32_t *uid);
HRESULT (*mifare_read_luid)(void *ctx, uint8_t *luid, size_t nbytes);
};