TITagitstandard to unix lineends

This commit is contained in:
Thorsten Bosbach
2018-11-10 10:11:50 +01:00
parent ede8b48820
commit db9dc8efd8
2 changed files with 225 additions and 225 deletions
@@ -1,198 +1,198 @@
/*
* TITagitstandard.c
*
* Created on: 01-03-2017
* Author: Phillip Nash
* Modified by rickventura for texas 15693 tag-it STANDARD
* Modified by ceres-c to finish things up
*/
#include "TITagitstandard.h"
#include "../Codec/ISO15693.h"
#include "../Memory.h"
#include "Crypto1.h"
#include "../Random.h"
#include "ISO15693-A.h"
#define BYTES_PER_PAGE 4
#define NUMBER_OF_SECTORS ( TITAGIT_STD_MEM_SIZE / BYTES_PER_PAGE )
#define MEM_UID_ADDRESS 0x20
static enum {
STATE_READY,
STATE_SELECTED,
STATE_QUIET
} State;
//ISO15693UidType Uid = {0x00, 0x00, 0x00, 0x00, 0x00, 0xC0, 0x07, 0xE0};
//0xE0 = iso15693
//0x07 = TEXAS INSTRUMENTS
//0xC0 0xC1 = "Tagitstandard" 0xC4 or 0xC5 "TagitPro" 0x00 or 0x01 or 0x80 or 0x81 "Tagitplus"
void TITagitstandardAppInit(void)
{
State = STATE_READY;
}
void TITagitstandardAppReset(void)
{
State = STATE_READY;
}
void TITagitstandardAppTask(void)
{
}
void TITagitstandardAppTick(void)
{
}
// void sendIntToTermina(uint8_t val)
// {
// char buf[16];
// snprintf(buf,16, "%02x",val);
// TerminalSendString(buf);
// }
uint16_t TITagitstandardAppProcess(uint8_t* FrameBuf, uint16_t FrameBytes)
{
if (FrameBytes >= ISO15693_MIN_FRAME_SIZE) {
if(ISO15693CheckCRC(FrameBuf, FrameBytes - ISO15693_CRC16_SIZE)) {
// At this point, we have a valid ISO15693 frame
uint8_t Command = FrameBuf[1];
uint16_t ResponseByteCount = ISO15693_APP_NO_RESPONSE;
uint8_t Uid[8];
//MemoryReadBlock(actualTagIt, 0, 44); // read the whole tag from FRAM
TITagitstandardGetUid(Uid);
//for (j==0 ; j < ActiveConfiguration.UidSize; j++) Uid[j] = actualTagIt[MEM_UID_ADDRESS + j] ;
switch(State) {
case STATE_READY:
if (Command == ISO15693_CMD_INVENTORY) {
FrameBuf[0] = 0x00; /* Flags */
FrameBuf[1] = 0x00; /* DSFID */
ISO15693CopyUid(&FrameBuf[2], Uid);
ResponseByteCount = 10;
} else if (Command == ISO15693_CMD_STAY_QUIET) {
if (ISO15693Addressed(FrameBuf,Uid)) {
State = STATE_QUIET;
}
} else if (Command == ISO15693_CMD_READ_SINGLE) {
uint8_t *FramePtr;
uint8_t PageAddress;
if (ISO15693Addressed(FrameBuf,Uid))
PageAddress = FrameBuf[10]; /* when receiving an addressed request pick block number from the 10th byte in the request*/
else
PageAddress = FrameBuf[2];
if (PageAddress >= NUMBER_OF_SECTORS) { /* the reader is requesting a sector out of bound */
FrameBuf[0] = ISO15693_RES_FLAG_ERROR;
FrameBuf[1] = ISO15693_RES_ERR_BLK_NOT_AVL; /* real TiTag standard reply with this error */
ResponseByteCount = 2;
break;
}
if (FrameBuf[0] & ISO15693_REQ_FLAG_OPTION) { /* request with option flag set */
FrameBuf[0] = 0x00; /* Flags */
FrameBuf[1] = ( PageAddress == 8 || PageAddress == 9) ? 0x02 : 0x00; /* block security status:when request has the option flag set*/
FramePtr = FrameBuf + 2;
ResponseByteCount = 6;
} else { /* request with option flag not set*/
FrameBuf[0] = 0x00; /* Flags */
FramePtr = FrameBuf + 1;
ResponseByteCount = 5;
}
MemoryReadBlock(FramePtr, PageAddress * BYTES_PER_PAGE, BYTES_PER_PAGE);
}
else if (Command == ISO15693_CMD_WRITE_SINGLE){
uint8_t* Dataptr;
uint8_t PageAddress;
if (ISO15693Addressed(FrameBuf, Uid)) {
PageAddress = FrameBuf[10]; /*when receiving anaddressed request pick block number from 10th byte in the request*/
Dataptr = &FrameBuf[11];
} else {
PageAddress = FrameBuf[2]; /*when receiving an unanaddressed request pick block number from 2nd byte in the request*/
Dataptr = &FrameBuf[3];
}
MemoryWriteBlock(Dataptr, PageAddress * BYTES_PER_PAGE, BYTES_PER_PAGE);
FrameBuf[0] = 0x00;
ResponseByteCount = 1;
}
break;
case STATE_SELECTED:
break;
case STATE_QUIET:
if (Command == ISO15693_CMD_RESET_TO_READY) {
if (ISO15693Addressed(FrameBuf, Uid)) {
FrameBuf[0] = 0;
ResponseByteCount = 1;
State = STATE_READY;
}
}
break;
default:
break;
}
if (ResponseByteCount > 0) {
/* There is data to be sent. Append CRC */
ISO15693AppendCRC(FrameBuf, ResponseByteCount);
ResponseByteCount += ISO15693_CRC16_SIZE;
}
return ResponseByteCount;
} else { // Invalid CRC
return ISO15693_APP_NO_RESPONSE;
}
} else { // Min frame size not met
return ISO15693_APP_NO_RESPONSE;
}
}
void TITagitstandardGetUid(ConfigurationUidType Uid)
{
MemoryReadBlock(&Uid[0], MEM_UID_ADDRESS, ActiveConfiguration.UidSize);
// Reverse UID after reading it
uint8_t* UidTemp = calloc(ActiveConfiguration.UidSize, sizeof(UidTemp));
int i;
for (i = 0; i < ActiveConfiguration.UidSize; i++)
UidTemp[i] = Uid[i];
for (i = 0; i < ActiveConfiguration.UidSize; i++)
Uid[i] = UidTemp[ActiveConfiguration.UidSize - i - 1];
}
void TITagitstandardSetUid(ConfigurationUidType Uid)
{
// Reverse UID before writing it
uint8_t* UidTemp = calloc(ActiveConfiguration.UidSize, sizeof(UidTemp));
int i;
for (i = 0; i < ActiveConfiguration.UidSize; i++)
UidTemp[i] = Uid[i];
for (i = 0; i < ActiveConfiguration.UidSize; i++)
Uid[i] = UidTemp[ActiveConfiguration.UidSize - i - 1];
MemoryWriteBlock(Uid, MEM_UID_ADDRESS, ActiveConfiguration.UidSize);
/*
* TITagitstandard.c
*
* Created on: 01-03-2017
* Author: Phillip Nash
* Modified by rickventura for texas 15693 tag-it STANDARD
* Modified by ceres-c to finish things up
*/
#include "TITagitstandard.h"
#include "../Codec/ISO15693.h"
#include "../Memory.h"
#include "Crypto1.h"
#include "../Random.h"
#include "ISO15693-A.h"
#define BYTES_PER_PAGE 4
#define NUMBER_OF_SECTORS ( TITAGIT_STD_MEM_SIZE / BYTES_PER_PAGE )
#define MEM_UID_ADDRESS 0x20
static enum {
STATE_READY,
STATE_SELECTED,
STATE_QUIET
} State;
//ISO15693UidType Uid = {0x00, 0x00, 0x00, 0x00, 0x00, 0xC0, 0x07, 0xE0};
//0xE0 = iso15693
//0x07 = TEXAS INSTRUMENTS
//0xC0 0xC1 = "Tagitstandard" 0xC4 or 0xC5 "TagitPro" 0x00 or 0x01 or 0x80 or 0x81 "Tagitplus"
void TITagitstandardAppInit(void)
{
State = STATE_READY;
}
void TITagitstandardAppReset(void)
{
State = STATE_READY;
}
void TITagitstandardAppTask(void)
{
}
void TITagitstandardAppTick(void)
{
}
// void sendIntToTermina(uint8_t val)
// {
// char buf[16];
// snprintf(buf,16, "%02x",val);
// TerminalSendString(buf);
// }
uint16_t TITagitstandardAppProcess(uint8_t* FrameBuf, uint16_t FrameBytes)
{
if (FrameBytes >= ISO15693_MIN_FRAME_SIZE) {
if(ISO15693CheckCRC(FrameBuf, FrameBytes - ISO15693_CRC16_SIZE)) {
// At this point, we have a valid ISO15693 frame
uint8_t Command = FrameBuf[1];
uint16_t ResponseByteCount = ISO15693_APP_NO_RESPONSE;
uint8_t Uid[8];
//MemoryReadBlock(actualTagIt, 0, 44); // read the whole tag from FRAM
TITagitstandardGetUid(Uid);
//for (j==0 ; j < ActiveConfiguration.UidSize; j++) Uid[j] = actualTagIt[MEM_UID_ADDRESS + j] ;
switch(State) {
case STATE_READY:
if (Command == ISO15693_CMD_INVENTORY) {
FrameBuf[0] = 0x00; /* Flags */
FrameBuf[1] = 0x00; /* DSFID */
ISO15693CopyUid(&FrameBuf[2], Uid);
ResponseByteCount = 10;
} else if (Command == ISO15693_CMD_STAY_QUIET) {
if (ISO15693Addressed(FrameBuf,Uid)) {
State = STATE_QUIET;
}
} else if (Command == ISO15693_CMD_READ_SINGLE) {
uint8_t *FramePtr;
uint8_t PageAddress;
if (ISO15693Addressed(FrameBuf,Uid))
PageAddress = FrameBuf[10]; /* when receiving an addressed request pick block number from the 10th byte in the request*/
else
PageAddress = FrameBuf[2];
if (PageAddress >= NUMBER_OF_SECTORS) { /* the reader is requesting a sector out of bound */
FrameBuf[0] = ISO15693_RES_FLAG_ERROR;
FrameBuf[1] = ISO15693_RES_ERR_BLK_NOT_AVL; /* real TiTag standard reply with this error */
ResponseByteCount = 2;
break;
}
if (FrameBuf[0] & ISO15693_REQ_FLAG_OPTION) { /* request with option flag set */
FrameBuf[0] = 0x00; /* Flags */
FrameBuf[1] = ( PageAddress == 8 || PageAddress == 9) ? 0x02 : 0x00; /* block security status:when request has the option flag set*/
FramePtr = FrameBuf + 2;
ResponseByteCount = 6;
} else { /* request with option flag not set*/
FrameBuf[0] = 0x00; /* Flags */
FramePtr = FrameBuf + 1;
ResponseByteCount = 5;
}
MemoryReadBlock(FramePtr, PageAddress * BYTES_PER_PAGE, BYTES_PER_PAGE);
}
else if (Command == ISO15693_CMD_WRITE_SINGLE){
uint8_t* Dataptr;
uint8_t PageAddress;
if (ISO15693Addressed(FrameBuf, Uid)) {
PageAddress = FrameBuf[10]; /*when receiving anaddressed request pick block number from 10th byte in the request*/
Dataptr = &FrameBuf[11];
} else {
PageAddress = FrameBuf[2]; /*when receiving an unanaddressed request pick block number from 2nd byte in the request*/
Dataptr = &FrameBuf[3];
}
MemoryWriteBlock(Dataptr, PageAddress * BYTES_PER_PAGE, BYTES_PER_PAGE);
FrameBuf[0] = 0x00;
ResponseByteCount = 1;
}
break;
case STATE_SELECTED:
break;
case STATE_QUIET:
if (Command == ISO15693_CMD_RESET_TO_READY) {
if (ISO15693Addressed(FrameBuf, Uid)) {
FrameBuf[0] = 0;
ResponseByteCount = 1;
State = STATE_READY;
}
}
break;
default:
break;
}
if (ResponseByteCount > 0) {
/* There is data to be sent. Append CRC */
ISO15693AppendCRC(FrameBuf, ResponseByteCount);
ResponseByteCount += ISO15693_CRC16_SIZE;
}
return ResponseByteCount;
} else { // Invalid CRC
return ISO15693_APP_NO_RESPONSE;
}
} else { // Min frame size not met
return ISO15693_APP_NO_RESPONSE;
}
}
void TITagitstandardGetUid(ConfigurationUidType Uid)
{
MemoryReadBlock(&Uid[0], MEM_UID_ADDRESS, ActiveConfiguration.UidSize);
// Reverse UID after reading it
uint8_t* UidTemp = calloc(ActiveConfiguration.UidSize, sizeof(UidTemp));
int i;
for (i = 0; i < ActiveConfiguration.UidSize; i++)
UidTemp[i] = Uid[i];
for (i = 0; i < ActiveConfiguration.UidSize; i++)
Uid[i] = UidTemp[ActiveConfiguration.UidSize - i - 1];
}
void TITagitstandardSetUid(ConfigurationUidType Uid)
{
// Reverse UID before writing it
uint8_t* UidTemp = calloc(ActiveConfiguration.UidSize, sizeof(UidTemp));
int i;
for (i = 0; i < ActiveConfiguration.UidSize; i++)
UidTemp[i] = Uid[i];
for (i = 0; i < ActiveConfiguration.UidSize; i++)
Uid[i] = UidTemp[ActiveConfiguration.UidSize - i - 1];
MemoryWriteBlock(Uid, MEM_UID_ADDRESS, ActiveConfiguration.UidSize);
}
@@ -1,28 +1,28 @@
/*
* MifareClassic.h
*
* Created on: 01.03.2017
* Author: skuser
* modified by rickventura
*/
#ifndef TITAGITSTANDARD_H_
#define TITAGITSTANDARD_H_
#include "Application.h"
#include "ISO15693-A.h"
#define TITAGIT_STD_UID_SIZE ISO15693_GENERIC_UID_SIZE //ISO15693_UID_SIZE
#define TITAGIT_STD_MEM_SIZE 44 //TAG-IT STANDARD MAX MEM SIZE
void TITagitstandardAppInit(void);
void TITagitstandardAppReset(void);
void TITagitstandardAppTask(void);
void TITagitstandardAppTick(void);
uint16_t TITagitstandardAppProcess(uint8_t* FrameBuf, uint16_t FrameBytes);
void TITagitstandardGetUid(ConfigurationUidType Uid);
void TITagitstandardSetUid(ConfigurationUidType Uid);
#endif /* VICINITY_H_ */
/*
* MifareClassic.h
*
* Created on: 01.03.2017
* Author: skuser
* modified by rickventura
*/
#ifndef TITAGITSTANDARD_H_
#define TITAGITSTANDARD_H_
#include "Application.h"
#include "ISO15693-A.h"
#define TITAGIT_STD_UID_SIZE ISO15693_GENERIC_UID_SIZE //ISO15693_UID_SIZE
#define TITAGIT_STD_MEM_SIZE 44 //TAG-IT STANDARD MAX MEM SIZE
void TITagitstandardAppInit(void);
void TITagitstandardAppReset(void);
void TITagitstandardAppTask(void);
void TITagitstandardAppTick(void);
uint16_t TITagitstandardAppProcess(uint8_t* FrameBuf, uint16_t FrameBytes);
void TITagitstandardGetUid(ConfigurationUidType Uid);
void TITagitstandardSetUid(ConfigurationUidType Uid);
#endif /* VICINITY_H_ */