added arduino nfcReader files (#42)

This commit is contained in:
Valentin Heiserer
2024-04-18 00:49:50 +02:00
committed by GitHub
parent 76cb0eaf1a
commit 6259d0bef3
68 changed files with 8463 additions and 0 deletions

View File

@@ -0,0 +1,225 @@
/**
* @modified picospuch
*/
#include "PN532_I2C.h"
#include "PN532_debug.h"
#include "Arduino.h"
#define PN532_I2C_ADDRESS (0x48 >> 1)
PN532_I2C::PN532_I2C(TwoWire &wire)
{
_wire = &wire;
command = 0;
}
void PN532_I2C::begin()
{
_wire->begin();
}
void PN532_I2C::wakeup()
{
delay(500); // wait for all ready to manipulate pn532
}
int8_t PN532_I2C::writeCommand(const uint8_t *header, uint8_t hlen, const uint8_t *body, uint8_t blen)
{
command = header[0];
_wire->beginTransmission(PN532_I2C_ADDRESS);
write(PN532_PREAMBLE);
write(PN532_STARTCODE1);
write(PN532_STARTCODE2);
uint8_t length = hlen + blen + 1; // length of data field: TFI + DATA
write(length);
write(~length + 1); // checksum of length
write(PN532_HOSTTOPN532);
uint8_t sum = PN532_HOSTTOPN532; // sum of TFI + DATA
DMSG("write: ");
for (uint8_t i = 0; i < hlen; i++) {
if (write(header[i])) {
sum += header[i];
DMSG_HEX(header[i]);
} else {
DMSG("\nToo many data to send, I2C doesn't support such a big packet\n"); // I2C max packet: 32 bytes
return PN532_INVALID_FRAME;
}
}
for (uint8_t i = 0; i < blen; i++) {
if (write(body[i])) {
sum += body[i];
DMSG_HEX(body[i]);
} else {
DMSG("\nToo many data to send, I2C doesn't support such a big packet\n"); // I2C max packet: 32 bytes
return PN532_INVALID_FRAME;
}
}
uint8_t checksum = ~sum + 1; // checksum of TFI + DATA
write(checksum);
write(PN532_POSTAMBLE);
_wire->endTransmission();
DMSG('\n');
return readAckFrame();
}
int16_t PN532_I2C::getResponseLength(uint8_t buf[], uint8_t len, uint16_t timeout) {
const uint8_t PN532_NACK[] = {0, 0, 0xFF, 0xFF, 0, 0};
uint16_t time = 0;
do {
if (_wire->requestFrom(PN532_I2C_ADDRESS, 6)) {
if (read() & 1) { // check first byte --- status
break; // PN532 is ready
}
}
delay(1);
time++;
if ((0 != timeout) && (time > timeout)) {
return -1;
}
} while (1);
if (0x00 != read() || // PREAMBLE
0x00 != read() || // STARTCODE1
0xFF != read() // STARTCODE2
) {
return PN532_INVALID_FRAME;
}
uint8_t length = read();
// request for last respond msg again
_wire->beginTransmission(PN532_I2C_ADDRESS);
for (uint16_t i = 0; i < sizeof(PN532_NACK); ++i) {
write(PN532_NACK[i]);
}
_wire->endTransmission();
return length;
}
int16_t PN532_I2C::readResponse(uint8_t buf[], uint8_t len, uint16_t timeout)
{
uint16_t time = 0;
uint8_t length;
length = getResponseLength(buf, len, timeout);
// [RDY] 00 00 FF LEN LCS (TFI PD0 ... PDn) DCS 00
do {
if (_wire->requestFrom(PN532_I2C_ADDRESS, 6 + length + 2)) {
if (read() & 1) { // check first byte --- status
break; // PN532 is ready
}
}
delay(1);
time++;
if ((0 != timeout) && (time > timeout)) {
return -1;
}
} while (1);
if (0x00 != read() || // PREAMBLE
0x00 != read() || // STARTCODE1
0xFF != read() // STARTCODE2
) {
return PN532_INVALID_FRAME;
}
length = read();
if (0 != (uint8_t)(length + read())) { // checksum of length
return PN532_INVALID_FRAME;
}
uint8_t cmd = command + 1; // response command
if (PN532_PN532TOHOST != read() || (cmd) != read()) {
return PN532_INVALID_FRAME;
}
length -= 2;
if (length > len) {
return PN532_NO_SPACE; // not enough space
}
DMSG("read: ");
DMSG_HEX(cmd);
uint8_t sum = PN532_PN532TOHOST + cmd;
for (uint8_t i = 0; i < length; i++) {
buf[i] = read();
sum += buf[i];
DMSG_HEX(buf[i]);
}
DMSG('\n');
uint8_t checksum = read();
if (0 != (uint8_t)(sum + checksum)) {
DMSG("checksum is not ok\n");
return PN532_INVALID_FRAME;
}
read(); // POSTAMBLE
return length;
}
int8_t PN532_I2C::readAckFrame()
{
const uint8_t PN532_ACK[] = {0, 0, 0xFF, 0, 0xFF, 0};
uint8_t ackBuf[sizeof(PN532_ACK)];
DMSG("wait for ack at : ");
DMSG(millis());
DMSG('\n');
uint16_t time = 0;
do {
if (_wire->requestFrom(PN532_I2C_ADDRESS, sizeof(PN532_ACK) + 1)) {
if (read() & 1) { // check first byte --- status
break; // PN532 is ready
}
}
delay(1);
time++;
if (time > PN532_ACK_WAIT_TIME) {
DMSG("Time out when waiting for ACK\n");
return PN532_TIMEOUT;
}
} while (1);
DMSG("ready at : ");
DMSG(millis());
DMSG('\n');
for (uint8_t i = 0; i < sizeof(PN532_ACK); i++) {
ackBuf[i] = read();
}
if (memcmp(ackBuf, PN532_ACK, sizeof(PN532_ACK))) {
DMSG("Invalid ACK\n");
return PN532_INVALID_ACK;
}
return 0;
}

View File

@@ -0,0 +1,44 @@
/**
* @modified picospuch
*/
#ifndef __PN532_I2C_H__
#define __PN532_I2C_H__
#include <Wire.h>
#include "PN532Interface.h"
class PN532_I2C : public PN532Interface {
public:
PN532_I2C(TwoWire &wire);
void begin();
void wakeup();
virtual int8_t writeCommand(const uint8_t *header, uint8_t hlen, const uint8_t *body = 0, uint8_t blen = 0);
int16_t readResponse(uint8_t buf[], uint8_t len, uint16_t timeout);
private:
TwoWire* _wire;
uint8_t command;
int8_t readAckFrame();
int16_t getResponseLength(uint8_t buf[], uint8_t len, uint16_t timeout);
inline uint8_t write(uint8_t data) {
#if ARDUINO >= 100
return _wire->write(data);
#else
return _wire->send(data);
#endif
}
inline uint8_t read() {
#if ARDUINO >= 100
return _wire->read();
#else
return _wire->receive();
#endif
}
};
#endif