forked from emsec/ChameleonMini
-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #83 from ceres-c/iso15_merge_rrg
ISO15693 sniffing codec
- Loading branch information
Showing
18 changed files
with
961 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
/* | ||
* SniffISO15693.h | ||
* | ||
* Created on: 05.11.2019 | ||
* Author: ceres-c | ||
*/ | ||
|
||
#ifdef CONFIG_ISO15693_SNIFF_SUPPORT | ||
|
||
#include "../Codec/SniffISO15693.h" | ||
#include "Sniff15693.h" | ||
|
||
void SniffISO15693AppInit(void) | ||
{ | ||
} | ||
|
||
void SniffISO15693AppReset(void) | ||
{ | ||
} | ||
|
||
|
||
void SniffISO15693AppTask(void) | ||
{ | ||
|
||
} | ||
|
||
void SniffISO15693AppTick(void) | ||
{ | ||
|
||
|
||
} | ||
|
||
uint16_t SniffISO15693AppProcess(uint8_t* FrameBuf, uint16_t FrameBytes) | ||
{ | ||
return 0; | ||
} | ||
|
||
#endif /* CONFIG_ISO15693_SNIFF_SUPPORT */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
/* | ||
* SniffISO15693.h | ||
* | ||
* Created on: 05.11.2019 | ||
* Author: ceres-c | ||
*/ | ||
|
||
#ifndef SNIFF_15693_H_ | ||
#define SNIFF_15693_H_ | ||
|
||
#include "Application.h" | ||
#include "ISO15693-A.h" | ||
|
||
void SniffISO15693AppInit(void); | ||
void SniffISO15693AppReset(void); | ||
void SniffISO15693AppTask(void); | ||
void SniffISO15693AppTick(void); | ||
uint16_t SniffISO15693AppProcess(uint8_t* FrameBuf, uint16_t FrameBytes); | ||
|
||
#endif /* SNIFF_15693_H_ */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.