mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-07-07 13:41:18 -07:00
Added em410xread, em410xsim, em410xread, bitstream, manmod, detectclock commands. Added an offline mode. Improved manchester demod routine, auto-detect clock rate in various routines.
This commit is contained in:
parent
e6b13a5718
commit
9760414b96
4 changed files with 741 additions and 231 deletions
|
@ -33,7 +33,6 @@ void dbp(char *str, ...)
|
|||
|
||||
int GraphBuffer[MAX_GRAPH_TRACE_LEN];
|
||||
int GraphTraceLen;
|
||||
int offline; // Whether the GUI operates in Offline mode.
|
||||
|
||||
HPEN GreyPen, GreenPen, WhitePen, YellowPen;
|
||||
HBRUSH GreenBrush, YellowBrush;
|
||||
|
@ -384,7 +383,7 @@ static void SetCommandEditTo(char *str)
|
|||
SendMessage(CommandEdit, EM_SETSEL, strlen(str), strlen(str));
|
||||
}
|
||||
|
||||
void ShowGui(void)
|
||||
void ShowGui()
|
||||
{
|
||||
WNDCLASSEX wc;
|
||||
memset(&wc, 0, sizeof(wc));
|
||||
|
@ -505,9 +504,11 @@ void ShowGui(void)
|
|||
}
|
||||
}
|
||||
|
||||
UsbCommand c;
|
||||
if(ReceiveCommandPoll(&c)) {
|
||||
UsbCommandReceived(&c);
|
||||
if (!offline)
|
||||
{
|
||||
UsbCommand c;
|
||||
if(ReceiveCommandPoll(&c))
|
||||
UsbCommandReceived(&c);
|
||||
}
|
||||
|
||||
Sleep(10);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue