mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-04-04 19:39:57 +08:00
Replace WITH_LCD by dynamic detection in client
This commit is contained in:
parent
a79c792d9f
commit
bb966caab1
1 changed files with 2 additions and 6 deletions
|
@ -338,7 +338,6 @@ static int CmdFPGAOff(const char *Cmd) {
|
||||||
return PM3_SUCCESS;
|
return PM3_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef WITH_LCD
|
|
||||||
static int CmdLCD(const char *Cmd) {
|
static int CmdLCD(const char *Cmd) {
|
||||||
int i, j;
|
int i, j;
|
||||||
sscanf(Cmd, "%x %d", &i, &j);
|
sscanf(Cmd, "%x %d", &i, &j);
|
||||||
|
@ -354,7 +353,6 @@ static int CmdLCDReset(const char *Cmd) {
|
||||||
SendCommandOLD(CMD_LCD_RESET, strtol(Cmd, NULL, 0), 0, 0, NULL, 0);
|
SendCommandOLD(CMD_LCD_RESET, strtol(Cmd, NULL, 0), 0, 0, NULL, 0);
|
||||||
return PM3_SUCCESS;
|
return PM3_SUCCESS;
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
|
|
||||||
static int CmdReadmem(const char *Cmd) {
|
static int CmdReadmem(const char *Cmd) {
|
||||||
clearCommandBuffer();
|
clearCommandBuffer();
|
||||||
|
@ -465,10 +463,8 @@ static command_t CommandTable[] = {
|
||||||
{"help", CmdHelp, AlwaysAvailable, "This help"},
|
{"help", CmdHelp, AlwaysAvailable, "This help"},
|
||||||
{"detectreader", CmdDetectReader, IfPm3Present, "['l'|'h'] -- Detect external reader field (option 'l' or 'h' to limit to LF or HF)"},
|
{"detectreader", CmdDetectReader, IfPm3Present, "['l'|'h'] -- Detect external reader field (option 'l' or 'h' to limit to LF or HF)"},
|
||||||
{"fpgaoff", CmdFPGAOff, IfPm3Present, "Set FPGA off"},
|
{"fpgaoff", CmdFPGAOff, IfPm3Present, "Set FPGA off"},
|
||||||
#ifdef WITH_LCD
|
{"lcd", CmdLCD, IfPm3Lcd, "<HEX command> <count> -- Send command/data to LCD"},
|
||||||
{"lcd", CmdLCD, IfPm3Present, "<HEX command> <count> -- Send command/data to LCD"},
|
{"lcdreset", CmdLCDReset, IfPm3Lcd, "Hardware reset LCD"},
|
||||||
{"lcdreset", CmdLCDReset, IfPm3Present, "Hardware reset LCD"},
|
|
||||||
#endif
|
|
||||||
{"readmem", CmdReadmem, IfPm3Present, "[address] -- Read memory at decimal address from flash"},
|
{"readmem", CmdReadmem, IfPm3Present, "[address] -- Read memory at decimal address from flash"},
|
||||||
{"reset", CmdReset, IfPm3Present, "Reset the Proxmark3"},
|
{"reset", CmdReset, IfPm3Present, "Reset the Proxmark3"},
|
||||||
{"setlfdivisor", CmdSetDivisor, IfPm3Present, "<19 - 255> -- Drive LF antenna at 12Mhz/(divisor+1)"},
|
{"setlfdivisor", CmdSetDivisor, IfPm3Present, "<19 - 255> -- Drive LF antenna at 12Mhz/(divisor+1)"},
|
||||||
|
|
Loading…
Add table
Reference in a new issue