mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-22 06:13:51 -07:00
stupid typo of mine, thanks iceman
This commit is contained in:
parent
972945ed24
commit
25e865afd3
1 changed files with 1 additions and 1 deletions
|
@ -424,7 +424,7 @@ int ASKDemod_ext(int clk, int invert, int maxErr, size_t maxlen, bool amplify, b
|
||||||
|
|
||||||
int start_idx = 0;
|
int start_idx = 0;
|
||||||
int errCnt = askdemod_ext(bits, &bitlen, &clk, &invert, maxErr, askamp, askType, &start_idx);
|
int errCnt = askdemod_ext(bits, &bitlen, &clk, &invert, maxErr, askamp, askType, &start_idx);
|
||||||
if (start_idx >- clk / 2) {
|
if (start_idx >= clk / 2) {
|
||||||
start_idx -= clk / 2;
|
start_idx -= clk / 2;
|
||||||
}
|
}
|
||||||
if ( askType == 0 ) { // if not Manchester, clock width is halved
|
if ( askType == 0 ) { // if not Manchester, clock width is halved
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue