forked from ATrappmann/PN5180-Library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PN5180ISO14443.h
46 lines (41 loc) · 1.36 KB
/
PN5180ISO14443.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// NAME: PN5180ISO14443.h
//
// DESC: ISO14443 protocol on NXP Semiconductors PN5180 module for Arduino.
//
// Copyright (c) 2019 by Dirk Carstensen. All rights reserved.
//
// This file is part of the PN5180 library for the Arduino environment.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
//
#ifndef PN5180ISO14443_H
#define PN5180ISO14443_H
#include "PN5180.h"
class PN5180ISO14443 : public PN5180 {
public:
PN5180ISO14443(uint8_t SSpin, uint8_t BUSYpin, uint8_t RSTpin);
private:
uint16_t rxBytesReceived();
public:
// Mifare TypeA
uint8_t activateTypeA(uint8_t *buffer, uint8_t kind);
bool mifareBlockRead(uint8_t blockno,uint8_t *buffer);
uint8_t mifareBlockWrite16(uint8_t blockno, uint8_t *buffer);
bool mifareHalt();
/*
* Helper functions
*/
public:
bool setupRF();
uint8_t readCardSerial(uint8_t *buffer);
bool isCardPresent();
};
#endif /* PN5180ISO14443_H */