tag unused Cmd [-Wunused-parameter]

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

View file

@ -173,6 +173,7 @@ int detectGProxII(uint8_t *bits, size_t *size) {
// but will leave the GraphBuffer intact.
//if successful it will push askraw data back to demod buffer ready for emulation
int CmdGuardDemod(const char *Cmd) {
(void)Cmd; // Cmd is not used so far
//Differential Biphase
//get binary from ask wave
@ -362,6 +363,7 @@ int CmdLFGuard(const char *Cmd) {
}
int CmdHelp(const char *Cmd) {
(void)Cmd; // Cmd is not used so far
CmdsHelp(CommandTable);
return 0;
}