mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-12-25 01:21:52 +08:00
chg: remove some warning of unused variables
This commit is contained in:
parent
9ee550af45
commit
5959cdf62c
1 changed files with 4 additions and 4 deletions
|
@ -1645,7 +1645,7 @@ int CmdNorm(const char *Cmd) {
|
|||
// set signal properties low/high/mean/amplitude and isnoice detection
|
||||
uint8_t bits[GraphTraceLen];
|
||||
size_t size = getFromGraphBuf(bits);
|
||||
isNoise(bits, sizeof(bits));
|
||||
isNoise(bits, size);
|
||||
RepaintGraphWindow();
|
||||
return 0;
|
||||
}
|
||||
|
@ -1735,7 +1735,7 @@ int CmdDirectionalThreshold(const char *Cmd) {
|
|||
// set signal properties low/high/mean/amplitude and isnoice detection
|
||||
uint8_t bits[GraphTraceLen];
|
||||
size_t size = getFromGraphBuf(bits);
|
||||
isNoise(bits, sizeof(bits));
|
||||
isNoise(bits, size);
|
||||
|
||||
RepaintGraphWindow();
|
||||
return 0;
|
||||
|
@ -1767,7 +1767,7 @@ int CmdZerocrossings(const char *Cmd) {
|
|||
// set signal properties low/high/mean/amplitude and isnoice detection
|
||||
uint8_t bits[GraphTraceLen];
|
||||
size_t size = getFromGraphBuf(bits);
|
||||
isNoise(bits, sizeof(bits));
|
||||
isNoise(bits, size);
|
||||
|
||||
RepaintGraphWindow();
|
||||
return 0;
|
||||
|
@ -2025,7 +2025,7 @@ int CmdDataIIR(const char *Cmd){
|
|||
// set signal properties low/high/mean/amplitude and isnoice detection
|
||||
uint8_t bits[GraphTraceLen];
|
||||
size_t size = getFromGraphBuf(bits);
|
||||
isNoise(bits, sizeof(bits));
|
||||
isNoise(bits, size);
|
||||
|
||||
RepaintGraphWindow();
|
||||
return 0;
|
||||
|
|
Loading…
Reference in a new issue