mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 13:53:55 -07:00
some more adjustments
This commit is contained in:
parent
998d752bd5
commit
86237b629f
4 changed files with 24 additions and 27 deletions
|
@ -7,15 +7,15 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
// Data and Graph commands
|
||||
//-----------------------------------------------------------------------------
|
||||
#include "cmddata.h"
|
||||
|
||||
#include <stdio.h> // also included in util.h
|
||||
#include <string.h> // also included in util.h
|
||||
#include <inttypes.h>
|
||||
#include <limits.h> // for CmdNorm INT_MIN && INT_MAX
|
||||
#include "data.h" // also included in util.h
|
||||
#include "cmddata.h"
|
||||
#include "util.h"
|
||||
#include "cmdmain.h"
|
||||
#include "proxmark3.h"
|
||||
#include "ui.h" // for show graph controls
|
||||
#include "graph.h" // for graph data
|
||||
#include "cmdparser.h"// already included in cmdmain.h
|
||||
|
@ -28,6 +28,9 @@
|
|||
uint8_t DemodBuffer[MAX_DEMOD_BUF_LEN];
|
||||
uint8_t g_debugMode = 0;
|
||||
size_t DemodBufferLen = 0;
|
||||
int g_DemodStartIdx=0;
|
||||
int g_DemodClock=0;
|
||||
|
||||
static int CmdHelp(const char *Cmd);
|
||||
|
||||
int usage_data_printdemodbuf(void){
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue