mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-20 21:33:47 -07:00
make style
This commit is contained in:
parent
5eeb356418
commit
a55e597e36
37 changed files with 193 additions and 193 deletions
|
@ -105,13 +105,13 @@ bool isGraphBitstream(void) {
|
|||
return true;
|
||||
}
|
||||
void convertGraphFromBitstream() {
|
||||
convertGraphFromBitstreamEx(1, 0);
|
||||
convertGraphFromBitstreamEx(1, 0);
|
||||
}
|
||||
void convertGraphFromBitstreamEx(int hi, int low) {
|
||||
for (int i = 0; i < GraphTraceLen; i++) {
|
||||
if (GraphBuffer[i] == hi)
|
||||
GraphBuffer[i] = 127;
|
||||
else if ( GraphBuffer[i] == low )
|
||||
else if (GraphBuffer[i] == low)
|
||||
GraphBuffer[i] = -127;
|
||||
else
|
||||
GraphBuffer[i] = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue