mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-14 10:37:23 -07:00
fix mandemod initialisation and add Transit tag trace
This commit is contained in:
parent
ccb6ae9169
commit
ac86b65681
3 changed files with 40007 additions and 1 deletions
|
@ -2532,7 +2532,12 @@ static void Cmdmanchesterdemod(char *str) {
|
|||
|
||||
/* Detect first transition */
|
||||
/* Lo-Hi (arbitrary) */
|
||||
for (i = 0; i < GraphTraceLen; i++)
|
||||
/* skip to the first high */
|
||||
for (i= 0; i < GraphTraceLen; i++)
|
||||
if(GraphBuffer[i] == high)
|
||||
break;
|
||||
/* now look for the first low */
|
||||
for (; i < GraphTraceLen; i++)
|
||||
{
|
||||
if (GraphBuffer[i] == low)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue