]>
cvs.zerfleddert.de Git - proxmark3-svn/blob - client/cmddata.c
1 //-----------------------------------------------------------------------------
2 // Copyright (C) 2010 iZsh <izsh at fail0verflow.com>
4 // This code is licensed to you under the terms of the GNU GPL, version 2 or,
5 // at your option, any later version. See the LICENSE.txt file for the text of
7 //-----------------------------------------------------------------------------
8 // Data and Graph commands
9 //-----------------------------------------------------------------------------
15 #include "proxmark3.h"
19 #include "cmdparser.h"
24 static int CmdHelp(const char *Cmd
);
26 int CmdAmp(const char *Cmd
)
28 int i
, rising
, falling
;
29 int max
= INT_MIN
, min
= INT_MAX
;
31 for (i
= 10; i
< GraphTraceLen
; ++i
) {
32 if (GraphBuffer
[i
] > max
)
34 if (GraphBuffer
[i
] < min
)
40 for (i
= 0; i
< GraphTraceLen
; ++i
) {
41 if (GraphBuffer
[i
+ 1] < GraphBuffer
[i
]) {
48 if (GraphBuffer
[i
+ 1] > GraphBuffer
[i
]) {
62 * Generic command to demodulate ASK.
64 * Argument is convention: positive or negative (High mod means zero
65 * or high mod means one)
67 * Updates the Graph trace with 0/1 values
72 int Cmdaskdemod(const char *Cmd
)
75 int c
, high
= 0, low
= 0;
77 sscanf(Cmd
, "%i", &c
);
79 if (c
!= 0 && c
!= 1) {
80 PrintAndLog("Invalid argument: %s", Cmd
);
84 /* Detect high and lows */
85 for (i
= 0; i
< GraphTraceLen
; ++i
)
87 if (GraphBuffer
[i
] > high
)
88 high
= GraphBuffer
[i
];
89 else if (GraphBuffer
[i
] < low
)
93 if (GraphBuffer
[0] > 0) {
98 for (i
= 1; i
< GraphTraceLen
; ++i
) {
99 /* Transitions are detected at each peak
100 * Transitions are either:
101 * - we're low: transition if we hit a high
102 * - we're high: transition if we hit a low
103 * (we need to do it this way because some tags keep high or
104 * low for long periods, others just reach the peak and go
107 if ((GraphBuffer
[i
] == high
) && (GraphBuffer
[i
- 1] == c
)) {
108 GraphBuffer
[i
] = 1 - c
;
109 } else if ((GraphBuffer
[i
] == low
) && (GraphBuffer
[i
- 1] == (1 - c
))){
113 GraphBuffer
[i
] = GraphBuffer
[i
- 1];
116 RepaintGraphWindow();
120 int CmdAutoCorr(const char *Cmd
)
122 static int CorrelBuffer
[MAX_GRAPH_TRACE_LEN
];
124 int window
= atoi(Cmd
);
127 PrintAndLog("needs a window");
130 if (window
>= GraphTraceLen
) {
131 PrintAndLog("window must be smaller than trace (%d samples)",
136 PrintAndLog("performing %d correlations", GraphTraceLen
- window
);
138 for (int i
= 0; i
< GraphTraceLen
- window
; ++i
) {
140 for (int j
= 0; j
< window
; ++j
) {
141 sum
+= (GraphBuffer
[j
]*GraphBuffer
[i
+ j
]) / 256;
143 CorrelBuffer
[i
] = sum
;
145 GraphTraceLen
= GraphTraceLen
- window
;
146 memcpy(GraphBuffer
, CorrelBuffer
, GraphTraceLen
* sizeof (int));
148 RepaintGraphWindow();
152 int CmdBitsamples(const char *Cmd
)
157 GetFromBigBuf(got
,sizeof(got
),0);
158 WaitForResponse(CMD_ACK
,NULL
);
160 for (int j
= 0; j
< sizeof(got
); j
++) {
161 for (int k
= 0; k
< 8; k
++) {
162 if(got
[j
] & (1 << (7 - k
))) {
163 GraphBuffer
[cnt
++] = 1;
165 GraphBuffer
[cnt
++] = 0;
170 RepaintGraphWindow();
175 * Convert to a bitstream
177 int CmdBitstream(const char *Cmd
)
185 int hithigh
, hitlow
, first
;
187 /* Detect high and lows and clock */
188 for (i
= 0; i
< GraphTraceLen
; ++i
)
190 if (GraphBuffer
[i
] > high
)
191 high
= GraphBuffer
[i
];
192 else if (GraphBuffer
[i
] < low
)
193 low
= GraphBuffer
[i
];
197 clock
= GetClock(Cmd
, high
, 1);
201 for (i
= 0; i
< (int)(gtl
/ clock
); ++i
)
206 /* Find out if we hit both high and low peaks */
207 for (j
= 0; j
< clock
; ++j
)
209 if (GraphBuffer
[(i
* clock
) + j
] == high
)
211 else if (GraphBuffer
[(i
* clock
) + j
] == low
)
213 /* it doesn't count if it's the first part of our read
214 because it's really just trailing from the last sequence */
215 if (first
&& (hithigh
|| hitlow
))
216 hithigh
= hitlow
= 0;
220 if (hithigh
&& hitlow
)
224 /* If we didn't hit both high and low peaks, we had a bit transition */
225 if (!hithigh
|| !hitlow
)
228 AppendGraph(0, clock
, bit
);
229 // for (j = 0; j < (int)(clock/2); j++)
230 // GraphBuffer[(i * clock) + j] = bit ^ 1;
231 // for (j = (int)(clock/2); j < clock; j++)
232 // GraphBuffer[(i * clock) + j] = bit;
235 RepaintGraphWindow();
239 int CmdBuffClear(const char *Cmd
)
241 UsbCommand c
= {CMD_BUFF_CLEAR
};
247 int CmdDec(const char *Cmd
)
249 for (int i
= 0; i
< (GraphTraceLen
/ 2); ++i
)
250 GraphBuffer
[i
] = GraphBuffer
[i
* 2];
252 PrintAndLog("decimated by 2");
253 RepaintGraphWindow();
257 /* Print our clock rate */
258 int CmdDetectClockRate(const char *Cmd
)
260 int clock
= DetectClock(0);
261 PrintAndLog("Auto-detected clock rate: %d", clock
);
265 int CmdFSKdemod(const char *Cmd
)
267 static const int LowTone
[] = {
268 1, 1, 1, 1, 1, -1, -1, -1, -1, -1,
269 1, 1, 1, 1, 1, -1, -1, -1, -1, -1,
270 1, 1, 1, 1, 1, -1, -1, -1, -1, -1,
271 1, 1, 1, 1, 1, -1, -1, -1, -1, -1,
272 1, 1, 1, 1, 1, -1, -1, -1, -1, -1
274 static const int HighTone
[] = {
275 1, 1, 1, 1, 1, -1, -1, -1, -1,
276 1, 1, 1, 1, -1, -1, -1, -1,
277 1, 1, 1, 1, -1, -1, -1, -1,
278 1, 1, 1, 1, -1, -1, -1, -1,
279 1, 1, 1, 1, -1, -1, -1, -1,
280 1, 1, 1, 1, -1, -1, -1, -1, -1,
283 int lowLen
= sizeof (LowTone
) / sizeof (int);
284 int highLen
= sizeof (HighTone
) / sizeof (int);
285 int convLen
= (highLen
> lowLen
) ? highLen
: lowLen
;
286 uint32_t hi
= 0, lo
= 0;
289 int minMark
= 0, maxMark
= 0;
291 for (i
= 0; i
< GraphTraceLen
- convLen
; ++i
) {
292 int lowSum
= 0, highSum
= 0;
294 for (j
= 0; j
< lowLen
; ++j
) {
295 lowSum
+= LowTone
[j
]*GraphBuffer
[i
+j
];
297 for (j
= 0; j
< highLen
; ++j
) {
298 highSum
+= HighTone
[j
] * GraphBuffer
[i
+ j
];
300 lowSum
= abs(100 * lowSum
/ lowLen
);
301 highSum
= abs(100 * highSum
/ highLen
);
302 GraphBuffer
[i
] = (highSum
<< 16) | lowSum
;
305 for(i
= 0; i
< GraphTraceLen
- convLen
- 16; ++i
) {
306 int lowTot
= 0, highTot
= 0;
307 // 10 and 8 are f_s divided by f_l and f_h, rounded
308 for (j
= 0; j
< 10; ++j
) {
309 lowTot
+= (GraphBuffer
[i
+j
] & 0xffff);
311 for (j
= 0; j
< 8; j
++) {
312 highTot
+= (GraphBuffer
[i
+ j
] >> 16);
314 GraphBuffer
[i
] = lowTot
- highTot
;
315 if (GraphBuffer
[i
] > maxMark
) maxMark
= GraphBuffer
[i
];
316 if (GraphBuffer
[i
] < minMark
) minMark
= GraphBuffer
[i
];
319 GraphTraceLen
-= (convLen
+ 16);
320 RepaintGraphWindow();
322 // Find bit-sync (3 lo followed by 3 high)
323 int max
= 0, maxPos
= 0;
324 for (i
= 0; i
< 6000; ++i
) {
326 for (j
= 0; j
< 3 * lowLen
; ++j
) {
327 dec
-= GraphBuffer
[i
+ j
];
329 for (; j
< 3 * (lowLen
+ highLen
); ++j
) {
330 dec
+= GraphBuffer
[i
+ j
];
338 // place start of bit sync marker in graph
339 GraphBuffer
[maxPos
] = maxMark
;
340 GraphBuffer
[maxPos
+ 1] = minMark
;
344 // place end of bit sync marker in graph
345 GraphBuffer
[maxPos
] = maxMark
;
346 GraphBuffer
[maxPos
+1] = minMark
;
348 PrintAndLog("actual data bits start at sample %d", maxPos
);
349 PrintAndLog("length %d/%d", highLen
, lowLen
);
352 bits
[sizeof(bits
)-1] = '\0';
354 // find bit pairs and manchester decode them
355 for (i
= 0; i
< arraylen(bits
) - 1; ++i
) {
357 for (j
= 0; j
< lowLen
; ++j
) {
358 dec
-= GraphBuffer
[maxPos
+ j
];
360 for (; j
< lowLen
+ highLen
; ++j
) {
361 dec
+= GraphBuffer
[maxPos
+ j
];
364 // place inter bit marker in graph
365 GraphBuffer
[maxPos
] = maxMark
;
366 GraphBuffer
[maxPos
+ 1] = minMark
;
368 // hi and lo form a 64 bit pair
369 hi
= (hi
<< 1) | (lo
>> 31);
371 // store decoded bit as binary (in hi/lo) and text (in bits[])
379 PrintAndLog("bits: '%s'", bits
);
380 PrintAndLog("hex: %08x %08x", hi
, lo
);
384 int CmdGrid(const char *Cmd
)
386 sscanf(Cmd
, "%i %i", &PlotGridX
, &PlotGridY
);
387 PlotGridXdefault
= PlotGridX
;
388 PlotGridYdefault
= PlotGridY
;
389 RepaintGraphWindow();
393 int CmdHexsamples(const char *Cmd
)
399 char* string_ptr
= string_buf
;
402 sscanf(Cmd
, "%i %i", &requested
, &offset
);
404 /* if no args send something */
405 if (requested
== 0) {
408 if (offset
+ requested
> sizeof(got
)) {
409 PrintAndLog("Tried to read past end of buffer, <bytes> + <offset> > 40000");
413 GetFromBigBuf(got
,requested
,offset
);
414 WaitForResponse(CMD_ACK
,NULL
);
417 for (j
= 0; j
< requested
; j
++) {
419 string_ptr
+= sprintf(string_ptr
, "%02x ", got
[j
]);
421 *(string_ptr
- 1) = '\0'; // remove the trailing space
422 PrintAndLog("%s", string_buf
);
423 string_buf
[0] = '\0';
424 string_ptr
= string_buf
;
427 if (j
== requested
- 1 && string_buf
[0] != '\0') { // print any remaining bytes
428 *(string_ptr
- 1) = '\0';
429 PrintAndLog("%s", string_buf
);
430 string_buf
[0] = '\0';
436 int CmdHide(const char *Cmd
)
442 int CmdHpf(const char *Cmd
)
447 for (i
= 10; i
< GraphTraceLen
; ++i
)
448 accum
+= GraphBuffer
[i
];
449 accum
/= (GraphTraceLen
- 10);
450 for (i
= 0; i
< GraphTraceLen
; ++i
)
451 GraphBuffer
[i
] -= accum
;
453 RepaintGraphWindow();
457 int CmdSamples(const char *Cmd
)
459 uint8_t got
[36440] = {0x00};
461 int n
= strtol(Cmd
, NULL
, 0);
467 PrintAndLog("Reading %d samples from device memory\n", n
);
468 GetFromBigBuf(got
,n
,3560);
469 WaitForResponse(CMD_ACK
,NULL
);
470 for (int j
= 0; j
< n
; ++j
) {
471 GraphBuffer
[j
] = ((int)got
[j
]) - 128;
474 RepaintGraphWindow();
478 int CmdLoad(const char *Cmd
)
480 FILE *f
= fopen(Cmd
, "r");
482 PrintAndLog("couldn't open '%s'", Cmd
);
488 while (fgets(line
, sizeof (line
), f
)) {
489 GraphBuffer
[GraphTraceLen
] = atoi(line
);
493 PrintAndLog("loaded %d samples", GraphTraceLen
);
494 RepaintGraphWindow();
498 int CmdLtrim(const char *Cmd
)
502 for (int i
= ds
; i
< GraphTraceLen
; ++i
)
503 GraphBuffer
[i
-ds
] = GraphBuffer
[i
];
506 RepaintGraphWindow();
511 * Manchester demodulate a bitstream. The bitstream needs to be already in
512 * the GraphBuffer as 0 and 1 values
514 * Give the clock rate as argument in order to help the sync - the algorithm
515 * resyncs at each pulse anyway.
517 * Not optimized by any means, this is the 1st time I'm writing this type of
518 * routine, feel free to improve...
520 * 1st argument: clock rate (as number of samples per clock rate)
521 * Typical values can be 64, 32, 128...
523 int CmdManchesterDemod(const char *Cmd
)
531 int hithigh
, hitlow
, first
;
537 /* check if we're inverting output */
540 PrintAndLog("Inverting output");
545 while(*Cmd
== ' '); // in case a 2nd argument was given
548 /* Holds the decoded bitstream: each clock period contains 2 bits */
549 /* later simplified to 1 bit after manchester decoding. */
550 /* Add 10 bits to allow for noisy / uncertain traces without aborting */
551 /* int BitStream[GraphTraceLen*2/clock+10]; */
553 /* But it does not work if compiling on WIndows: therefore we just allocate a */
555 uint8_t BitStream
[MAX_GRAPH_TRACE_LEN
];
557 /* Detect high and lows */
558 for (i
= 0; i
< GraphTraceLen
; i
++)
560 if (GraphBuffer
[i
] > high
)
561 high
= GraphBuffer
[i
];
562 else if (GraphBuffer
[i
] < low
)
563 low
= GraphBuffer
[i
];
567 clock
= GetClock(Cmd
, high
, 1);
569 int tolerance
= clock
/4;
571 /* Detect first transition */
572 /* Lo-Hi (arbitrary) */
573 /* skip to the first high */
574 for (i
= 0; i
< GraphTraceLen
; i
++)
575 if (GraphBuffer
[i
] == high
)
577 /* now look for the first low */
578 for (; i
< GraphTraceLen
; i
++)
580 if (GraphBuffer
[i
] == low
)
587 PrintAndLog("Clock: %d", clock
);
589 /* If we're not working with 1/0s, demod based off clock */
592 PrintAndLog("Entering path A");
593 bit
= 0; /* We assume the 1st bit is zero, it may not be
594 * the case: this routine (I think) has an init problem.
597 for (; i
< (int)(GraphTraceLen
/ clock
); i
++)
603 /* Find out if we hit both high and low peaks */
604 for (j
= 0; j
< clock
; j
++)
606 if (GraphBuffer
[(i
* clock
) + j
] == high
)
608 else if (GraphBuffer
[(i
* clock
) + j
] == low
)
611 /* it doesn't count if it's the first part of our read
612 because it's really just trailing from the last sequence */
613 if (first
&& (hithigh
|| hitlow
))
614 hithigh
= hitlow
= 0;
618 if (hithigh
&& hitlow
)
622 /* If we didn't hit both high and low peaks, we had a bit transition */
623 if (!hithigh
|| !hitlow
)
626 BitStream
[bit2idx
++] = bit
^ invert
;
630 /* standard 1/0 bitstream */
634 /* Then detect duration between 2 successive transitions */
635 for (bitidx
= 1; i
< GraphTraceLen
; i
++)
637 if (GraphBuffer
[i
-1] != GraphBuffer
[i
])
642 // Error check: if bitidx becomes too large, we do not
643 // have a Manchester encoded bitstream or the clock is really
645 if (bitidx
> (GraphTraceLen
*2/clock
+8) ) {
646 PrintAndLog("Error: the clock you gave is probably wrong, aborting.");
649 // Then switch depending on lc length:
650 // Tolerance is 1/4 of clock rate (arbitrary)
651 if (abs(lc
-clock
/2) < tolerance
) {
652 // Short pulse : either "1" or "0"
653 BitStream
[bitidx
++]=GraphBuffer
[i
-1];
654 } else if (abs(lc
-clock
) < tolerance
) {
655 // Long pulse: either "11" or "00"
656 BitStream
[bitidx
++]=GraphBuffer
[i
-1];
657 BitStream
[bitidx
++]=GraphBuffer
[i
-1];
661 PrintAndLog("Warning: Manchester decode error for pulse width detection.");
662 PrintAndLog("(too many of those messages mean either the stream is not Manchester encoded, or clock is wrong)");
666 PrintAndLog("Error: too many detection errors, aborting.");
673 // At this stage, we now have a bitstream of "01" ("1") or "10" ("0"), parse it into final decoded bitstream
674 // Actually, we overwrite BitStream with the new decoded bitstream, we just need to be careful
675 // to stop output at the final bitidx2 value, not bitidx
676 for (i
= 0; i
< bitidx
; i
+= 2) {
677 if ((BitStream
[i
] == 0) && (BitStream
[i
+1] == 1)) {
678 BitStream
[bit2idx
++] = 1 ^ invert
;
679 } else if ((BitStream
[i
] == 1) && (BitStream
[i
+1] == 0)) {
680 BitStream
[bit2idx
++] = 0 ^ invert
;
682 // We cannot end up in this state, this means we are unsynchronized,
686 PrintAndLog("Unsynchronized, resync...");
687 PrintAndLog("(too many of those messages mean the stream is not Manchester encoded)");
691 PrintAndLog("Error: too many decode errors, aborting.");
698 PrintAndLog("Manchester decoded bitstream");
699 // Now output the bitstream to the scrollback by line of 16 bits
700 for (i
= 0; i
< (bit2idx
-16); i
+=16) {
701 PrintAndLog("%i %i %i %i %i %i %i %i %i %i %i %i %i %i %i %i",
722 /* Modulate our data into manchester */
723 int CmdManchesterMod(const char *Cmd
)
727 int bit
, lastbit
, wave
;
730 clock
= GetClock(Cmd
, 0, 1);
734 for (i
= 0; i
< (int)(GraphTraceLen
/ clock
); i
++)
736 bit
= GraphBuffer
[i
* clock
] ^ 1;
738 for (j
= 0; j
< (int)(clock
/2); j
++)
739 GraphBuffer
[(i
* clock
) + j
] = bit
^ lastbit
^ wave
;
740 for (j
= (int)(clock
/2); j
< clock
; j
++)
741 GraphBuffer
[(i
* clock
) + j
] = bit
^ lastbit
^ wave
^ 1;
743 /* Keep track of how we start our wave and if we changed or not this time */
744 wave
^= bit
^ lastbit
;
748 RepaintGraphWindow();
752 int CmdNorm(const char *Cmd
)
755 int max
= INT_MIN
, min
= INT_MAX
;
757 for (i
= 10; i
< GraphTraceLen
; ++i
) {
758 if (GraphBuffer
[i
] > max
)
759 max
= GraphBuffer
[i
];
760 if (GraphBuffer
[i
] < min
)
761 min
= GraphBuffer
[i
];
765 for (i
= 0; i
< GraphTraceLen
; ++i
) {
766 GraphBuffer
[i
] = (GraphBuffer
[i
] - ((max
+ min
) / 2)) * 1000 /
770 RepaintGraphWindow();
774 int CmdPlot(const char *Cmd
)
780 int CmdSave(const char *Cmd
)
782 FILE *f
= fopen(Cmd
, "w");
784 PrintAndLog("couldn't open '%s'", Cmd
);
788 for (i
= 0; i
< GraphTraceLen
; i
++) {
789 fprintf(f
, "%d\n", GraphBuffer
[i
]);
792 PrintAndLog("saved to '%s'", Cmd
);
796 int CmdScale(const char *Cmd
)
798 CursorScaleFactor
= atoi(Cmd
);
799 if (CursorScaleFactor
== 0) {
800 PrintAndLog("bad, can't have zero scale");
801 CursorScaleFactor
= 1;
803 RepaintGraphWindow();
807 int CmdThreshold(const char *Cmd
)
809 int threshold
= atoi(Cmd
);
811 for (int i
= 0; i
< GraphTraceLen
; ++i
) {
812 if (GraphBuffer
[i
] >= threshold
)
817 RepaintGraphWindow();
821 int CmdDirectionalThreshold(const char *Cmd
)
823 int8_t upThres
= param_get8(Cmd
, 0);
824 int8_t downThres
= param_get8(Cmd
, 1);
826 printf("Applying Up Threshold: %d, Down Threshold: %d\n", upThres
, downThres
);
828 int lastValue
= GraphBuffer
[0];
829 GraphBuffer
[0] = 0; // Will be changed at the end, but init 0 as we adjust to last samples value if no threshold kicks in.
831 for (int i
= 1; i
< GraphTraceLen
; ++i
) {
832 // Apply first threshold to samples heading up
833 if (GraphBuffer
[i
] >= upThres
&& GraphBuffer
[i
] > lastValue
)
835 lastValue
= GraphBuffer
[i
]; // Buffer last value as we overwrite it.
838 // Apply second threshold to samples heading down
839 else if (GraphBuffer
[i
] <= downThres
&& GraphBuffer
[i
] < lastValue
)
841 lastValue
= GraphBuffer
[i
]; // Buffer last value as we overwrite it.
846 lastValue
= GraphBuffer
[i
]; // Buffer last value as we overwrite it.
847 GraphBuffer
[i
] = GraphBuffer
[i
-1];
851 GraphBuffer
[0] = GraphBuffer
[1]; // Aline with first edited sample.
852 RepaintGraphWindow();
856 int CmdZerocrossings(const char *Cmd
)
858 // Zero-crossings aren't meaningful unless the signal is zero-mean.
865 for (int i
= 0; i
< GraphTraceLen
; ++i
) {
866 if (GraphBuffer
[i
] * sign
>= 0) {
867 // No change in sign, reproduce the previous sample count.
869 GraphBuffer
[i
] = lastZc
;
871 // Change in sign, reset the sample count.
873 GraphBuffer
[i
] = lastZc
;
881 RepaintGraphWindow();
885 static command_t CommandTable
[] =
887 {"help", CmdHelp
, 1, "This help"},
888 {"amp", CmdAmp
, 1, "Amplify peaks"},
889 {"askdemod", Cmdaskdemod
, 1, "<0 or 1> -- Attempt to demodulate simple ASK tags"},
890 {"autocorr", CmdAutoCorr
, 1, "<window length> -- Autocorrelation over window"},
891 {"bitsamples", CmdBitsamples
, 0, "Get raw samples as bitstring"},
892 {"bitstream", CmdBitstream
, 1, "[clock rate] -- Convert waveform into a bitstream"},
893 {"buffclear", CmdBuffClear
, 1, "Clear sample buffer and graph window"},
894 {"dec", CmdDec
, 1, "Decimate samples"},
895 {"detectclock", CmdDetectClockRate
, 1, "Detect clock rate"},
896 {"fskdemod", CmdFSKdemod
, 1, "Demodulate graph window as a HID FSK"},
897 {"grid", CmdGrid
, 1, "<x> <y> -- overlay grid on graph window, use zero value to turn off either"},
898 {"hexsamples", CmdHexsamples
, 0, "<bytes> [<offset>] -- Dump big buffer as hex bytes"},
899 {"hide", CmdHide
, 1, "Hide graph window"},
900 {"hpf", CmdHpf
, 1, "Remove DC offset from trace"},
901 {"load", CmdLoad
, 1, "<filename> -- Load trace (to graph window"},
902 {"ltrim", CmdLtrim
, 1, "<samples> -- Trim samples from left of trace"},
903 {"mandemod", CmdManchesterDemod
, 1, "[i] [clock rate] -- Manchester demodulate binary stream (option 'i' to invert output)"},
904 {"manmod", CmdManchesterMod
, 1, "[clock rate] -- Manchester modulate a binary stream"},
905 {"norm", CmdNorm
, 1, "Normalize max/min to +/-500"},
906 {"plot", CmdPlot
, 1, "Show graph window (hit 'h' in window for keystroke help)"},
907 {"samples", CmdSamples
, 0, "[512 - 40000] -- Get raw samples for graph window"},
908 {"save", CmdSave
, 1, "<filename> -- Save trace (from graph window)"},
909 {"scale", CmdScale
, 1, "<int> -- Set cursor display scale"},
910 {"threshold", CmdThreshold
, 1, "<threshold> -- Maximize/minimize every value in the graph window depending on threshold"},
911 {"zerocrossings", CmdZerocrossings
, 1, "Count time between zero-crossings"},
912 {"dirthreshold", CmdDirectionalThreshold
, 1, "<thres up> <thres down> -- Max rising higher up-thres/ Min falling lower down-thres, keep rest as prev."},
913 {NULL
, NULL
, 0, NULL
}
916 int CmdData(const char *Cmd
)
918 CmdsParse(CommandTable
, Cmd
);
922 int CmdHelp(const char *Cmd
)
924 CmdsHelp(CommandTable
);