Skip to content

Commit

Permalink
Merge pull request RfidResearchGroup#434 from martinbeier/patch-3
Browse files Browse the repository at this point in the history
fixed indala FC decoding
  • Loading branch information
iceman1001 authored Oct 10, 2019
2 parents 3fd5ed0 + baffd45 commit c82103d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/cmdlfindala.c
Original file line number Diff line number Diff line change
Expand Up @@ -140,8 +140,8 @@ static int CmdIndalaDemod(const char *Cmd) {
fc |= DemodBuffer[57] << 7; // b8
fc |= DemodBuffer[49] << 6; // b7
fc |= DemodBuffer[44] << 5; // b6
fc |= DemodBuffer[48] << 4; // b5
fc |= DemodBuffer[47] << 3; // b4
fc |= DemodBuffer[47] << 4; // b5
fc |= DemodBuffer[48] << 3; // b4
fc |= DemodBuffer[53] << 2; // b3
fc |= DemodBuffer[39] << 1; // b2
fc |= DemodBuffer[58] << 0; // b1
Expand Down

0 comments on commit c82103d

Please sign in to comment.