Files
nvx 4bb28e8617 iClass support
Requires enabling in Makefile and disabling other options to fit in program space below 64k
2022-06-28 16:57:39 +10:00

29 lines
609 B
C

/*
* ISO15693.h
*
* Created on: 25.01.2017
* Author: Phillip Nash
*/
#ifndef ISO15693_H_
#define ISO15693_H_
#include <stdint.h>
#include <stdbool.h>
#define ISO15693_APP_NO_RESPONSE 0x0000
#define ISO15693_APP_SOF_ONLY 0xFFFF
#define ISO15693_APP_EARLY_SEND 0xFFFE
/* Codec Interface */
void ISO15693CodecInit(void);
void ISO15693CodecDeInit(void);
void ISO15693CodecTask(void);
/* Application Interface */
void ISO15693CodecStart(void);
void ISO15693CodecReset(void);
void ISO15693StartEarlySend(bool bDualSubcarrier, uint16_t byteCount);
#endif /* ISO15693_H_ */