mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 13:53:55 -07:00
removed redundant function to compose reader short frame
This commit is contained in:
parent
28afbd2bee
commit
195af47289
4 changed files with 36 additions and 80 deletions
|
@ -12,6 +12,10 @@
|
|||
#include "util.h"
|
||||
#include "string.h"
|
||||
|
||||
size_t nbytes(size_t nbits) {
|
||||
return (nbits/8)+((nbits%8)>0);
|
||||
}
|
||||
|
||||
uint32_t SwapBits(uint32_t value, int nrbits) {
|
||||
int i;
|
||||
uint32_t newvalue = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue