mirror of
https://github.com/RfidResearchGroup/ChameleonMini.git
synced 2026-05-12 11:20:37 -07:00
Requires enabling in Makefile and disabling other options to fit in program space below 64k
29 lines
609 B
C
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_ */
|