mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 05:43:48 -07:00
tag unused Cmd [-Wunused-parameter]
This commit is contained in:
parent
c10e47f8a9
commit
cc0454d5d2
48 changed files with 132 additions and 27 deletions
|
@ -187,6 +187,7 @@ int CmdLFCommandRead(const char *Cmd) {
|
|||
}
|
||||
|
||||
int CmdFlexdemod(const char *Cmd) {
|
||||
(void)Cmd; // Cmd is not used so far
|
||||
|
||||
if (GraphTraceLen < 0)
|
||||
return 0;
|
||||
|
@ -737,6 +738,7 @@ int CmdLFpskSim(const char *Cmd) {
|
|||
}
|
||||
|
||||
int CmdLFSimBidir(const char *Cmd) {
|
||||
(void)Cmd; // Cmd is not used so far
|
||||
// Set ADC to twice the carrier for a slight supersampling
|
||||
// HACK: not implemented in ARMSRC.
|
||||
PrintAndLogEx(INFO, "Not implemented yet.");
|
||||
|
@ -1013,6 +1015,7 @@ int CmdLF(const char *Cmd) {
|
|||
}
|
||||
|
||||
int CmdHelp(const char *Cmd) {
|
||||
(void)Cmd; // Cmd is not used so far
|
||||
CmdsHelp(CommandTable);
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue