Skip to content

Commit

Permalink
Make style
Browse files Browse the repository at this point in the history
Signed-off-by: yah01 <[email protected]>
  • Loading branch information
yah01 committed Oct 26, 2023
1 parent b9aee50 commit 18c1784
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ This project uses the changelog in accordance with [keepchangelog](http://keepac
- Modified `hf iclass configcard` to only support online mode (@Antiklesys)
- Modified `hf iclass configcard` command to generate config cards without a cardhelper module by porting the contents of blocks 6 & 7 from nfc-iclass (@Antiklesys)
- Fixed `hf iclass info` command showing incorrectly in offline mode (@Antiklesys)
- Improved the performance of sampling (@yah01)
- Changed the performance of sampling (@yah01)

## [Raccoon.4.17140][2023-09-09]
- Changed text and adjust pm3_test case for mf_aes_brute (@doegox)
Expand Down
2 changes: 1 addition & 1 deletion armsrc/lfsampling.c
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ void logSample(uint8_t sample, uint8_t decimation, uint8_t bits_per_sample, bool
uint8_t bits_cap = 8 - bits_offset;

// write the current byte
data.buffer[samples.numbits>>3] |= sample >> bits_offset;
data.buffer[samples.numbits >> 3] |= sample >> bits_offset;
int numbtis = data.numbits + bits_cap;

// write the remaining bits to the next byte
Expand Down

0 comments on commit 18c1784

Please sign in to comment.