tag unused Cmd [-Wunused-parameter]

This commit is contained in:
Philippe Teuwen
2019-04-10 12:23:40 +02:00
parent c10e47f8a9
commit cc0454d5d2
48 changed files with 132 additions and 27 deletions

View File

@@ -88,6 +88,7 @@ int CmdHFSearch(const char *Cmd) {
}
int CmdHFTune(const char *Cmd) {
(void)Cmd; // Cmd is not used so far
PrintAndLogEx(SUCCESS, "Measuring HF antenna, press button to exit");
UsbCommand c = {CMD_MEASURE_ANTENNA_TUNING_HF};
clearCommandBuffer();
@@ -137,6 +138,7 @@ int CmdHF(const char *Cmd) {
}
int CmdHelp(const char *Cmd) {
(void)Cmd; // Cmd is not used so far
CmdsHelp(CommandTable);
return 0;
}