mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-19 13:00:42 -07:00
CHG: data plot
- the marking of clock, looks better without borders. It only connected to ASK. STT mark also looks better.
Still problem with finding the startindex...
This commit is contained in:
parent
a47ded5b54
commit
c6e5c7ea46
4 changed files with 103 additions and 93 deletions
|
@ -37,12 +37,9 @@ int ClearGraph(int redraw)
|
|||
{
|
||||
int gtl = GraphTraceLen;
|
||||
memset(GraphBuffer, 0x00, GraphTraceLen);
|
||||
|
||||
GraphTraceLen = 0;
|
||||
|
||||
if (redraw)
|
||||
RepaintGraphWindow();
|
||||
|
||||
return gtl;
|
||||
}
|
||||
// option '1' to save GraphBuffer any other to restore
|
||||
|
@ -70,13 +67,14 @@ void setGraphBuf(uint8_t *buff, size_t size)
|
|||
{
|
||||
if ( buff == NULL ) return;
|
||||
|
||||
uint16_t i = 0;
|
||||
ClearGraph(0);
|
||||
|
||||
if ( size > MAX_GRAPH_TRACE_LEN )
|
||||
size = MAX_GRAPH_TRACE_LEN;
|
||||
ClearGraph(0);
|
||||
for (; i < size; ++i){
|
||||
|
||||
for (uint16_t i = 0; i < size; ++i)
|
||||
GraphBuffer[i] = buff[i] - 128;
|
||||
}
|
||||
|
||||
GraphTraceLen = size;
|
||||
RepaintGraphWindow();
|
||||
return;
|
||||
|
@ -133,8 +131,8 @@ int GetAskClock(const char str[], bool printAns, bool verbose)
|
|||
if (!strcmp(str, ""))
|
||||
clock = 0;
|
||||
|
||||
if (clock != 0)
|
||||
return clock;
|
||||
if (clock != 0) return clock;
|
||||
|
||||
// Auto-detect clock
|
||||
uint8_t grph[MAX_GRAPH_TRACE_LEN]={0};
|
||||
size_t size = getFromGraphBuf(grph);
|
||||
|
@ -145,15 +143,12 @@ int GetAskClock(const char str[], bool printAns, bool verbose)
|
|||
}
|
||||
bool st = DetectST(grph, &size, &clock);
|
||||
int start = 0;
|
||||
if (st == false) {
|
||||
if (st == false)
|
||||
start = DetectASKClock(grph, size, &clock, 20);
|
||||
}
|
||||
|
||||
// Only print this message if we're not looping something
|
||||
if (printAns){
|
||||
if (printAns)
|
||||
PrintAndLog("Auto-detected clock rate: %d, Best Starting Position: %d", clock, start);
|
||||
}
|
||||
PlotClock = clock;
|
||||
PlockClockStartIndex = start;
|
||||
return clock;
|
||||
}
|
||||
|
||||
|
@ -193,9 +188,6 @@ int GetPskClock(const char str[], bool printAns, bool verbose)
|
|||
clock = DetectPSKClock(grph, size, 0);
|
||||
// Only print this message if we're not looping something
|
||||
if (printAns) PrintAndLog("Auto-detected clock rate: %d", clock);
|
||||
|
||||
PlotClock = clock;
|
||||
// PlockClockStartIndex = start;
|
||||
return clock;
|
||||
}
|
||||
|
||||
|
@ -221,8 +213,6 @@ uint8_t GetNrzClock(const char str[], bool printAns, bool verbose)
|
|||
if (printAns)
|
||||
PrintAndLog("Auto-detected clock rate: %d", clock);
|
||||
|
||||
PlotClock = clock;
|
||||
//PlockClockStartIndex = start;
|
||||
return clock;
|
||||
}
|
||||
//by marshmellow
|
||||
|
@ -247,8 +237,6 @@ uint8_t GetFskClock(const char str[], bool printAns, bool verbose)
|
|||
PrintAndLog("DEBUG: unknown fsk field clock detected");
|
||||
PrintAndLog("Detected Field Clocks: FC/%d, FC/%d - Bit Clock: RF/%d", fc1, fc2, rf1);
|
||||
}
|
||||
//PlotClock = clock;
|
||||
//PlockClockStartIndex = start;
|
||||
return 0;
|
||||
}
|
||||
uint8_t fskClocks(uint8_t *fc1, uint8_t *fc2, uint8_t *rf1, bool verbose)
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
|
||||
#include <iostream>
|
||||
#include <QT>
|
||||
#include <QPainterPath>
|
||||
#include <QBrush>
|
||||
#include <QPen>
|
||||
|
@ -278,8 +279,10 @@ void ProxWidget::paintEvent(QPaintEvent *event)
|
|||
int foo = 40 + (int)((CursorCPos - GraphStart) * GraphPixelsPerPoint);
|
||||
int bar = 40 + ((CursorDPos - GraphStart) * GraphPixelsPerPoint);
|
||||
QRect r_stt(foo, r.top(), bar-foo, r.bottom() );
|
||||
painter.fillRect(r_stt, QBrush( QT_ORANGE_TS ));
|
||||
painter.drawRect(r_stt);
|
||||
QBrush b_stt( QBrush( QT_ORANGE_TS ));
|
||||
b_stt.setStyle(Qt::Dense1Pattern);
|
||||
painter.setPen(Qt::NoPen);
|
||||
painter.fillRect(r_stt, b_stt);
|
||||
}
|
||||
|
||||
// Mark Clock pulse
|
||||
|
@ -293,8 +296,11 @@ void ProxWidget::paintEvent(QPaintEvent *event)
|
|||
int foo = 40 + (int)((i - GraphStart) * GraphPixelsPerPoint);
|
||||
int bar = 40 + ((i + PlotClock - GraphStart) * GraphPixelsPerPoint);
|
||||
QRect r_clock(foo, r.top(), bar-foo, r.bottom() );
|
||||
painter.fillRect(r_clock, QBrush( QT_RED_TS ));
|
||||
painter.drawRect(r_clock);
|
||||
|
||||
QBrush b_clk( QBrush( QT_RED_TS ));
|
||||
b_clk.setStyle(Qt::Dense1Pattern);
|
||||
painter.setPen(Qt::NoPen);
|
||||
painter.fillRect(r_clock, b_clk);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -23,6 +23,8 @@ class ProxWidget : public QWidget
|
|||
double GraphPixelsPerPoint;
|
||||
int CursorAPos;
|
||||
int CursorBPos;
|
||||
//int CursorCPos;
|
||||
//int CursorDPos;
|
||||
|
||||
public:
|
||||
ProxWidget(QWidget *parent = 0);
|
||||
|
|
|
@ -940,6 +940,10 @@ int DetectStrongAskClock(uint8_t dest[], size_t size, uint8_t high, uint8_t low)
|
|||
}
|
||||
return 0;
|
||||
}
|
||||
void SetGraphClock( int clock, int startidx){
|
||||
PlotClock = clock;
|
||||
PlockClockStartIndex = startidx;
|
||||
}
|
||||
|
||||
// by marshmellow
|
||||
// not perfect especially with lower clocks or VERY good antennas (heavy wave clipping)
|
||||
|
@ -1026,6 +1030,8 @@ int DetectASKClock(uint8_t dest[], size_t size, int *clock, int maxErr)
|
|||
if (g_debugMode == 2) prnt("DEBUG ASK: clk %d, err %d, startpos %d, endpos %d", clk[clkCnt], errCnt, ii, i);
|
||||
if (errCnt==0 && clkCnt<7) {
|
||||
if (!clockFnd) *clock = clk[clkCnt];
|
||||
|
||||
SetGraphClock(*clock, ii);
|
||||
return ii;
|
||||
}
|
||||
//if we found errors see if it is lowest so far and save it as best run
|
||||
|
@ -1048,6 +1054,8 @@ int DetectASKClock(uint8_t dest[], size_t size, int *clock, int maxErr)
|
|||
if (g_debugMode == 2) prnt("DEBUG ASK: clk %d, # Errors %d, Current Best Clk %d, bestStart %d", clk[k], bestErr[k], clk[best], bestStart[best]);
|
||||
}
|
||||
if (!clockFnd) *clock = clk[best];
|
||||
|
||||
SetGraphClock(*clock, bestStart[best]);
|
||||
return bestStart[best];
|
||||
}
|
||||
|
||||
|
@ -1058,14 +1066,17 @@ int DetectPSKClock(uint8_t dest[], size_t size, int clock)
|
|||
{
|
||||
uint8_t clk[] = {255,16,32,40,50,64,100,128,255}; //255 is not a valid clock
|
||||
uint16_t loopCnt = 4096; //don't need to loop through entire array...
|
||||
if (size == 0) return 0;
|
||||
if (size<loopCnt) loopCnt = size-20;
|
||||
|
||||
//if we already have a valid clock quit
|
||||
size_t i=1;
|
||||
for (; i < 8; ++i)
|
||||
if (clk[i] == clock) return clock;
|
||||
|
||||
if (size < 160+20) return 0;
|
||||
|
||||
// size must be larger than 20 here, and 160 later on.
|
||||
if (size < loopCnt) loopCnt = size-20;
|
||||
|
||||
size_t waveStart=0, waveEnd=0, firstFullWave=0, lastClkBit=0;
|
||||
uint8_t clkCnt, fc=0, fullWaveLen=0, tol=1;
|
||||
uint16_t peakcnt=0, errCnt=0, waveLenCnt=0;
|
||||
|
@ -1131,9 +1142,7 @@ int DetectPSKClock(uint8_t dest[], size_t size, int clock)
|
|||
}
|
||||
}
|
||||
}
|
||||
if (errCnt == 0){
|
||||
return clk[clkCnt];
|
||||
}
|
||||
if (errCnt == 0) return clk[clkCnt];
|
||||
if (errCnt <= bestErr[clkCnt]) bestErr[clkCnt] = errCnt;
|
||||
if (peakcnt > peaksdet[clkCnt]) peaksdet[clkCnt] = peakcnt;
|
||||
}
|
||||
|
@ -1141,9 +1150,9 @@ int DetectPSKClock(uint8_t dest[], size_t size, int clock)
|
|||
//return the highest clk with the most peaks found
|
||||
uint8_t best = 7;
|
||||
for (i=7; i >= 1; i--){
|
||||
if (peaksdet[i] > peaksdet[best]) {
|
||||
if (peaksdet[i] > peaksdet[best])
|
||||
best = i;
|
||||
}
|
||||
|
||||
if (g_debugMode == 2) prnt("DEBUG PSK: Clk: %d, peaks: %d, errs: %d, bestClk: %d",clk[i],peaksdet[i],bestErr[i],clk[best]);
|
||||
}
|
||||
return clk[best];
|
||||
|
@ -1180,17 +1189,21 @@ int DetectStrongNRZClk(uint8_t *dest, size_t size, int peak, int low){
|
|||
|
||||
//by marshmellow
|
||||
//detect nrz clock by reading #peaks vs no peaks(or errors)
|
||||
//iceman: shouldn't param clock be reference? like DetectASKClock
|
||||
int DetectNRZClock(uint8_t dest[], size_t size, int clock)
|
||||
{
|
||||
size_t i = 0;
|
||||
uint8_t clk[] = {8,16,32,40,50,64,100,128,255};
|
||||
size_t loopCnt = 4096; //don't need to loop through entire array...
|
||||
if (size == 0) return 0;
|
||||
if (size<loopCnt) loopCnt = size-20;
|
||||
|
||||
//if we already have a valid clock quit
|
||||
for (; i < 8; ++i)
|
||||
if (clk[i] == clock) return clock;
|
||||
|
||||
if (size < 20) return 0;
|
||||
// size must be larger than 20 here
|
||||
if (size < loopCnt) loopCnt = size-20;
|
||||
|
||||
//get high and low peak
|
||||
int peak, low;
|
||||
if (getHiLo(dest, loopCnt, &peak, &low, 75, 75) < 1) return 0;
|
||||
|
@ -1262,7 +1275,8 @@ int DetectNRZClock(uint8_t dest[], size_t size, int clock)
|
|||
} else if (dest[i] < peak && dest[i] > low){
|
||||
if (ignoreCnt == 0){
|
||||
bitHigh=false;
|
||||
if (errBitHigh==true) peakcnt--;
|
||||
if (errBitHigh==true)
|
||||
peakcnt--;
|
||||
errBitHigh=false;
|
||||
} else {
|
||||
ignoreCnt--;
|
||||
|
@ -1279,17 +1293,17 @@ int DetectNRZClock(uint8_t dest[], size_t size, int clock)
|
|||
}
|
||||
}
|
||||
}
|
||||
int iii=7;
|
||||
|
||||
uint8_t best = 0;
|
||||
for (iii=7; iii > 0; iii--){
|
||||
if ((peaksdet[iii] >= (peaksdet[best]-1)) && (peaksdet[iii] <= peaksdet[best]+1) && lowestTransition) {
|
||||
if (clk[iii] > (lowestTransition - (clk[iii]/8)) && clk[iii] < (lowestTransition + (clk[iii]/8))) {
|
||||
best = iii;
|
||||
for (int m = 7; m > 0; m--){
|
||||
if ((peaksdet[m] >= (peaksdet[best]-1)) && (peaksdet[m] <= peaksdet[best]+1) && lowestTransition) {
|
||||
if (clk[m] > (lowestTransition - (clk[m]/8)) && clk[m] < (lowestTransition + (clk[m]/8))) {
|
||||
best = m;
|
||||
}
|
||||
} else if (peaksdet[iii] > peaksdet[best]){
|
||||
best = iii;
|
||||
} else if (peaksdet[m] > peaksdet[best]){
|
||||
best = m;
|
||||
}
|
||||
if (g_debugMode==2) prnt("DEBUG NRZ: Clk: %d, peaks: %d, maxPeak: %d, bestClk: %d, lowestTrs: %d",clk[iii],peaksdet[iii],maxPeak, clk[best], lowestTransition);
|
||||
if (g_debugMode==2) prnt("DEBUG NRZ: Clk: %d, peaks: %d, maxPeak: %d, bestClk: %d, lowestTrs: %d", clk[m], peaksdet[m], maxPeak, clk[best], lowestTransition);
|
||||
}
|
||||
|
||||
return clk[best];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue