-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathiso15693.h
34 lines (24 loc) · 1.04 KB
/
iso15693.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
//***************************************************************
//------------<02.Dec.2010 by Peter Reiser>----------------------
//***************************************************************
#ifndef _ISO15693_H_
#define _ISO15693_H_
//================================================================
#include <MSP430x23x0.h> // prozessor spezific header
//#include <stdio.h> // standard input/output header
#include "mcu.h"
#include "trf796x.h"
#include "types.h"
#include "uart.h"
//===============================================================
#define SIXTEEN_SLOTS 0x06
#define ONE_SLOT 0x26
//===============================================================
// if disabled file ISO15693.c may be excluded from build
#define ENABLE15693 // delete to disable standard
//===============================================================
void Iso15693FindTag(void);
void Iso15693Anticollision(u08_t *mask, u08_t length);
void TRF796xCheckRXWaitTime(void);
//===============================================================
#endif