mirror of
https://github.com/RfidResearchGroup/ChameleonMini.git
synced 2026-05-12 11:20:37 -07:00
25 lines
475 B
C
25 lines
475 B
C
/*
|
|
* MifareClassic.h
|
|
*
|
|
* Created on: 01.03.2017
|
|
* Author: skuser
|
|
*/
|
|
|
|
#ifndef VICINITY_H_
|
|
#define VICINITY_H_
|
|
|
|
#include "Application.h"
|
|
#include "ISO15693-A.h"
|
|
|
|
void VicinityAppInit(void);
|
|
void VicinityAppReset(void);
|
|
void VicinityAppTask(void);
|
|
void VicinityAppTick(void);
|
|
uint16_t VicinityAppProcess(uint8_t *FrameBuf, uint16_t FrameBytes);
|
|
void VicinityGetUid(ConfigurationUidType Uid);
|
|
void VicinitySetUid(ConfigurationUidType Uid);
|
|
|
|
|
|
|
|
#endif /* VICINITY_H_ */
|