mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-20 13:23:51 -07:00
fix: StandAloneMode samyrun, proxbrute, - id values are unsigned
This commit is contained in:
parent
7bf6e0d089
commit
ff07af84bf
2 changed files with 2 additions and 2 deletions
|
@ -16,7 +16,7 @@ void RunMod() {
|
||||||
StandAloneMode();
|
StandAloneMode();
|
||||||
FpgaDownloadAndGo(FPGA_BITSTREAM_LF);
|
FpgaDownloadAndGo(FPGA_BITSTREAM_LF);
|
||||||
|
|
||||||
int high[OPTS], low[OPTS];
|
uint32_t high[OPTS], low[OPTS];
|
||||||
int selected = 0;
|
int selected = 0;
|
||||||
int playing = 0;
|
int playing = 0;
|
||||||
int cardRead = 0;
|
int cardRead = 0;
|
||||||
|
|
|
@ -15,7 +15,7 @@ void RunMod() {
|
||||||
StandAloneMode();
|
StandAloneMode();
|
||||||
FpgaDownloadAndGo(FPGA_BITSTREAM_LF);
|
FpgaDownloadAndGo(FPGA_BITSTREAM_LF);
|
||||||
|
|
||||||
int high[OPTS], low[OPTS];
|
uint32_t high[OPTS], low[OPTS];
|
||||||
int selected = 0;
|
int selected = 0;
|
||||||
int playing = 0;
|
int playing = 0;
|
||||||
int cardRead = 0;
|
int cardRead = 0;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue