mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-22 14:23:50 -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
|
@ -28,6 +28,7 @@ int usage_lf_cotag_read(void) {
|
|||
// COTAG demod should be able to use GraphBuffer,
|
||||
// when data load samples
|
||||
int CmdCOTAGDemod(const char *Cmd) {
|
||||
(void)Cmd; // Cmd is not used so far
|
||||
|
||||
uint8_t bits[COTAG_BITS] = {0};
|
||||
size_t bitlen = COTAG_BITS;
|
||||
|
@ -116,6 +117,7 @@ int CmdLFCOTAG(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