mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2026-05-09 03:00:07 -04:00
hw setmux - improved user feedback
This commit is contained in:
@@ -539,7 +539,7 @@ static int CmdSetMux(const char *Cmd) {
|
||||
CLIParserContext *ctx;
|
||||
CLIParserInit(&ctx, "hw setmux",
|
||||
"Set the ADC mux to a specific value",
|
||||
"hw setmux --hiraw -> set HIGH RAW"
|
||||
"hw setmux --hipkd -> set HIGH PEAK\n"
|
||||
);
|
||||
|
||||
void *argtable[] = {
|
||||
@@ -562,6 +562,13 @@ static int CmdSetMux(const char *Cmd) {
|
||||
return PM3_EINVARG;
|
||||
}
|
||||
|
||||
#ifdef WITH_FPC_USART
|
||||
if (loraw || hiraw) {
|
||||
PrintAndLogEx(INFO, "this ADC mux option is unavailable on RDV4 compiled with FPC USART");
|
||||
return PM3_EINVARG;
|
||||
}
|
||||
#endif
|
||||
|
||||
uint8_t arg = 0;
|
||||
if (lopkd)
|
||||
arg = 0;
|
||||
|
||||
Reference in New Issue
Block a user